diff --git a/git_repo/repo.py b/git_repo/repo.py index d99cd71..6d2e6ad 100644 --- a/git_repo/repo.py +++ b/git_repo/repo.py @@ -29,6 +29,22 @@ {self} [--path=] [-v...] (gist|snippet) fetch [] {self} [--path=] [-v...] (gist|snippet) create [--secret] [ ...] {self} [--path=] [-v...] (gist|snippet) delete [-f] + {self} [--path=] [-v...] issue (list|ls) [--filter=] + {self} [--path=] [-v...] issue (list|ls) [|] + {self} [--path=] [-v...] issue get [--filter=] [ ...] + {self} [--path=] [-v...] issue set [--filter=] [ ...] + {self} [--path=] [-v...] issue unset [--filter=] [ ...] + {self} [--path=] [-v...] issue toggle [--filter=] [ ...] + {self} [--path=] [-v...] issue edit [] + {self} [--path=] [-v...] issue / (list|ls) [--filter=] + {self} [--path=] [-v...] issue / (list|ls) [|] + {self} [--path=] [-v...] issue / get [--filter=] [ ...] + {self} [--path=] [-v...] issue / set [] [--filter=] [ ...] + {self} [--path=] [-v...] issue / unset [] [--filter=] [ ...] + {self} [--path=] [-v...] issue / toggle [] [--filter=] [ ...] + {self} [--path=] [-v...] issue / edit [] + {self} [--path=] [-v...] issue / add + {self} [--path=] [-v...] issue / delete [-f] {self} [--path=] [-v...] config [--config=] {self} [-v...] config [--config=] {self} --help @@ -44,6 +60,7 @@ list Lists the repositories for a given user gist Manages gist files request Handles requests for merge + issue Handles issues open Open the given or current repository in a browser config Run authentication process and configure the tool @@ -92,6 +109,16 @@ -t,--title= Title to give to the request for merge -m,--message=<message> Description for the request for merge +Options for issues: + get Gets a value for the given action listed below + set Sets a value for the given action listed below + unset Unsets a value for the given action listed below + toggle Toggles a value for the given action listed below + <action> Action: label, milestone or mark + <value> Value for what shall be set + --filter=<filter> Filters the list of issues [Default: ] + <issue_id> Issue's number + Configuration options: alias Name to use for the git remote fqdn URL of the repository @@ -147,6 +174,29 @@ EXTRACT_URL_RE = re.compile('[^:]*(://|@)[^/]*/') +def blue(s): + return '\033[94m{}\033[0m'.format(s) +def green(s): + return '\033[92m{}\033[0m'.format(s) +def red(s): + return '\033[91m{}\033[0m'.format(s) + +def confirm(what, where): + ''' + Method to show a CLI based confirmation message, waiting for a yes/no answer. + "what" and "where" are used to better define the message. + ''' + ans = input('Are you sure you want to delete the ' + '{} {} from the service?\n[yN]> '.format(what, where)) + if 'y' in ans: + ans = input('Are you really sure? there\'s no coming back!\n' + '[type \'burn!\' to proceed]> ') + if 'burn!' != ans: + return False + else: + return False + return True + class GitRepoRunner(KeywordArgumentParser): @@ -247,6 +297,14 @@ def set_branch(self, branch): self.branch = branch + @store_parameter('<action>') + def set_action(self, action): + self.action = action + + @store_parameter('<issue_id>') + def set_issue_action(self, issue_id): + self.issues = issue_id + @store_parameter('<repo>') def set_target_repo(self, repo): self.target_repo = repo @@ -511,6 +569,185 @@ def do_gist_delete(self): log.info('Successfully deleted gist!') return 0 + '''Issues''' + + @register_action('issue', 'ls') + @register_action('issue', 'list') + def do_issue_list(self): + service = self.get_service() + if self.action: + if self.action in ('milestones', 'milestone', 'm'): + milestones = service.issue_milestone_list(self.user_name, self.repo_name) + print(blue(next(milestones)), file=sys.stderr) + for milestone in milestones: + print(milestone) + return 0 + elif self.action in ('labels', 'label', 'l'): + labels = service.issue_label_list(self.user_name, self.repo_name) + print(blue(next(labels)), file=sys.stderr) + for label in labels: + print(label) + return 0 + elif self.action in ('mark', 'm'): + print('opened\nclosed\nread') + return 0 + else: + issue = service.issue_grab(self.user_name, self.repo_name, self.action) + print('\n'.join([ + 'Issue #{} ({}) by @{}'.format( + issue['id'], + green(issue['state']) if issue['state'] == 'open' else red(issue['state']), + issue['poster']), + 'Created at:\t{} {}'.format( + issue['creation'], + '' if not issue['state'] == 'closed' else 'and closed at: {} by @{}'.format( + issue['closed_at'], issue['closed_by'] + ) + ), + 'Assigned:\t{}'.format('@{}'.format(issue['assignee']) or 'ΓΈ'), + 'Milestone:\t{}'.format(issue['milestone']), + 'Labels:\t\t{}'.format(', '.join(issue['labels'])), + 'URI:\t\t{}'.format(issue['uri']), + 'Title:\t\t{}'.format(issue['title']), + 'Body:', '', + issue['body'], + ]) + ) + else: + + + def format_issue(issue): + if issue[0] == None: + status_icon = ' ' + elif not issue[5]: + status_icon = green('πŸ“–') if issue[0] else red('πŸ“•') + else: + status_icon = green('πŸ“¦') if issue[0] else red('πŸ“¦') + number = issue[1].rjust(3) + labels = issue[2][:20].ljust(20) + ("…" if len(issue[2]) > 20 else "") + title = issue[3][:60].ljust(60) + ("…" if len(issue[3]) > 60 else "") + uri = issue[4] + return '{} {}\t{}\t{}\t{}'.format(status_icon, number, labels, title, uri) + + issues = service.issue_list(self.user_name, self.repo_name, self.filter or '') + print(blue(format_issue(next(issues))), file=sys.stderr) + for issue in issues: + print(format_issue(issue)) + return 0 + + def check_issues_parameter(self): + if self.issues == [] and self.filter == '': + if self.value: + self.issues = [self.value] + self.value = None + else: + raise ArgumentError("Need at least one issue or a --filter parameter") + if len(self.issues) == 1 and self.issues[0] in ('*', 'all'): + self.issues = [] + + @register_action('issue', 'get') + def do_issue_get(self): + service = self.get_service() + if len(self.issues) == 1 and self.issues[0] == '-': + self.user_name, self.repo_name, self.issues = service.issue_extract_from_file(sys.stdin) + issue_data = service.issue_get(self.user_name, self.repo_name, self.action, self.filter or '', self.issues) + print(blue(next(issue_data)), file=sys.stderr) + for data in issue_data: + print('{}'.format(data)) + + @register_action('issue', 'set') + def do_issue_set(self): + self.check_issues_parameter() + service = self.get_service() + if len(self.issues) == 1 and self.issues[0] == '-': + self.user_name, self.repo_name, self.issues = service.issue_extract_from_file(sys.stdin) + rv = 1 + if all(service.issue_set(self.user_name, self.repo_name, self.action, self.value, self.filter or '', self.issues)): + rv = 0 + self.do_issue_get() + return rv + + @register_action('issue', 'unset') + def do_issue_unset(self): + self.check_issues_parameter() + service = self.get_service() + if len(self.issues) == 1 and self.issues[0] == '-': + self.user_name, self.repo_name, self.issues = service.issue_extract_from_file(sys.stdin) + rv = 1 + if all(service.issue_unset(self.user_name, self.repo_name, self.action, self.value, self.filter or '', self.issues)): + rv = 0 + self.do_issue_get() + return rv + + @register_action('issue', 'toggle') + def do_issue_toggle(self): + self.check_issues_parameter() + service = self.get_service() + if len(self.issues) == 1 and self.issues[0] == '-': + self.user_name, self.repo_name, self.issues = service.issue_extract_from_file(sys.stdin) + rv = 1 + if all(service.issue_toggle(self.user_name, self.repo_name, self.action, self.value, self.filter or '', self.issues)): + rv = 0 + self.do_issue_get() + return rv + + @register_action('issue', 'edit') + def do_issue_edit(self): + do_ask=False + if len(self.issues) == 1 and self.issues[0] == '-': + self.user_name, self.repo_name, self.issues = service.issue_extract_from_file(sys.stdin) + do_ask=True + + def edit_issue(title, body): + from tempfile import NamedTemporaryFile + from subprocess import call + with NamedTemporaryFile( + prefix='git-repo-issue-', + suffix='.md', + mode='w+b') as issue_file: + issue_file.write('Title: {}\n\nBody:\n{}\n'.format(title, body).encode('utf-8')) + issue_file.flush() + call("{} {}".format(os.environ['EDITOR'], issue_file.name), shell=True) + issue_file.seek(0) + updated_issue = issue_file.read().decode('utf-8') + try: + _, updated_issue = updated_issue.split('Title: ') + title, body, *tail = updated_issue.split('\n\nBody:\n') + body = ''.join([body]+tail) + except Exception: + raise ResourceError("Format of the modified issue cannot be parsed.") + + print('New issue\'s details:') + print('Title: {}'.format(title)) + print('Body:\n{}'.format(body)) + if do_ask and input('Do you confirm it\'s ok? [Yn] ').lower().startswith('n'): + return None + return {'title': title, 'body': body} + + service = self.get_service() + if service.issue_edit(self.user_name, self.repo_name, self.issues[0], edit_issue): + return 0 + return 1 + + @register_action('issue', 'add') + def do_issue_action_add(self): + service = self.get_service() + if service.issue_action_add(self.user_name, self.repo_name, self.action, self.value): + return 0 + return 1 + + @register_action('issue', 'del') + def do_issue_action_delete(self): + service = self.get_service() + if not self.force: # pragma: no cover + if not confirm('Action {} will be removed'.format(self.action), self.repo_slug): + return 0 + if service.issue_action_del(self.user_name, self.repo_name, self.action, self.value): + return 0 + return 1 + + '''Configuration''' + @register_action('config') def do_config(self): from getpass import getpass diff --git a/git_repo/services/ext/github.py b/git_repo/services/ext/github.py index d5dfb8c..162ecfb 100644 --- a/git_repo/services/ext/github.py +++ b/git_repo/services/ext/github.py @@ -3,13 +3,15 @@ import logging log = logging.getLogger('git_repo.github') -from ..service import register_target, RepositoryService, os +from ..service import register_target, RepositoryService, os, parse_comma_string_to_list from ...exceptions import ResourceError, ResourceExistsError, ResourceNotFoundError, ArgumentError from ...tools import columnize import github3 from git.exc import GitCommandError +from collections import namedtuple + from datetime import datetime @@ -299,6 +301,234 @@ def request_fetch(self, user, repo, request, pull=False, force=False): raise ResourceNotFoundError('Could not find opened request #{}'.format(request)) from err raise err + '''Issues''' + + ISSUE_FILTER_DEFAULTS=dict( + state = 'all', + milestone = None, + assignee = None, + mentioned = None, + labels = [], + sort = None, + direction = 'desc', + since = None, + type = 'all', + ) + + def issue_list_parse_filter_statement(self, filter_stmt, transform=None): + from copy import deepcopy + + params = deepcopy(self.ISSUE_FILTER_DEFAULTS) + + for f in parse_comma_string_to_list(filter_stmt): + if ':' in f: + param, value_head, *value_tail = f.split(':') + value = "".join([value_head] + value_tail) # fix labels containing : + if transform: + param, value = transform(param, value) + if not param in params.keys(): + raise ArgumentError('Unknown filter key {}'.format(param)) + if isinstance(params[param], list): + params[param].append(value) + else: + params[param] = value + return params + + def issue_extract_from_file(self, it): + # Message-ID: <guyzmo/git-repo/issues/1/123456789@github.com> + for line in it: + if line.lower().startswith('message-id:'): + _, line = line.lower().split('message-id: <') + user, repo, _, issue, *_ = line.lower().split('/') + return user, repo, [issue] + + def issue_label_list(self, user, repo): + repository = self.gh.repository(user, repo) + yield "Name" + for l in repository.iter_labels(): + yield l.name + + def issue_milestone_list(self, user, repo): + repository = self.gh.repository(user, repo) + yield "Name" + for m in repository.iter_milestones(): + yield m.title + + def issue_grab(self, user, repo, issue_id): + repository = self.gh.repository(user, repo) + issue = repository.issue(issue_id) + return dict( + id=issue.number, + state=issue.state, + title=issue.title, + uri=issue.html_url, + poster=issue.user.login, + milestone=issue.milestone, + labels=[label.name for label in issue.labels], + creation=issue.created_at.isoformat(), + closed_at=issue.closed_at, + closed_by=issue.closed_by.login if issue.closed_by else '', + body=issue.body, + assignee=issue.assignee.login if issue.assignee else None, + repository='/'.join(issue.repository) + ) + + def issue_list(self, user, repo, filter_str=''): + params = self.issue_list_parse_filter_statement( + filter_stmt=filter_str, + transform=lambda k,v: (k.replace('status', 'state').replace('label', 'labels'), v) + ) + type_filter = params['type'] + del params['type'] + repository = self.gh.repository(user, repo) + yield (None, 'Id', 'Labels', 'Title', 'URL', '') + for issue in repository.iter_issues(**params): + if type_filter != 'all': + if type_filter.startswith('i') and issue.pull_request: + continue + if type_filter.startswith('p') and not issue.pull_request: + continue + yield ( not issue.is_closed(), + str(issue.number), + ','.join([l.name for l in issue.labels]), + issue.title, + issue.html_url, + issue.pull_request) + + def issue_edit(self, user, repo, issue, edit_cb): + repository = self.gh.repository(user, repo) + issue_obj = repository.issue(issue) + updated_issue = edit_cb(issue_obj.title, issue_obj.body) + if not updated_issue: + return False + return issue_obj.edit(title=updated_issue['title'], body=updated_issue['body']) + + def issue_action(self, user, repo, action, value, filter_str, issues, application): + log.debug("issue_action({}, {}, {}, {}, {}, {}, {})".format( + user, repo, action, value, filter_str, issues, application)) + repository = self.gh.repository(user, repo) + params = self.issue_list_parse_filter_statement( + filter_stmt=filter_str, + transform=lambda k,v: (k.replace('label', 'labels'), v) + ) + if 'type' in params: + del params['type'] + for issue in repository.iter_issues(**params): + if not issues or str(issue.number) in issues: + if action.lower() in ('opened', 'open', 'o'): + log.debug("issue_action({}) -> open".format(issue)) + yield application['open'](issue) + elif action.lower() in ('closed', 'close', 'c'): + log.debug("issue_action({}) -> close".format(issue)) + yield application['close'](issue) + elif action.lower() in ('read', 'r'): + log.debug("issue_action({}) -> read".format(issue)) + for notif in repository.iter_notifications(): + if notif.subject['url'].split('/')[-1] in issues: + yield application['read'](issue, notif) + continue + else: + yield "{}\t{}".format(issue.number, True) + continue + elif action.lower() in ('subscription', 'subscribed', 'subscribe', 'sub', 's'): + log.debug("issue_action({}) -> subscription".format(issue)) + for notif in repository.iter_notifications(): + if notif.subject['url'].split('/')[-1] in issues: + yield application['subscription'](issue, notif, is_notif=True) + continue + else: + if value is None: + for event in issue.iter_events(): + if event.event == 'subscribed' and event.actor.login == self.username: + yield application['subscription'](issue, event, is_notif=False) + continue + yield "{}\t{}".format(issue.number, '?') + continue + + elif action in ('label', 'labels'): + log.debug("issue_action({}) -> label".format(issue)) + if value is None: + yield application['label'](issue, list(issue.iter_labels())) + continue + labels = set() + labels_avail = {l.name: l for l in repository.iter_labels()} + for label in parse_comma_string_to_list(value): + if label in labels_avail: + labels.add(labels_avail[label]) + else: + raise ArgumentError("Label '{}' is invalid.".format(value)) + yield application['label'](issue, list(labels)) + continue + + elif action == 'milestone': + log.debug("issue_action({}) -> milestone".format(issue)) + if value is None: + yield application['milestone'](issue) + continue + milestones = list(repository.iter_milestones()) + for milestone in milestones: + if value == milestone.title: + yield application['milestone'](issue, milestone) + break + else: + raise ArgumentError("Milestone '{}' is invalid.".format(value)) + + else: + log.debug("issue_action({}) ?!?!".format(issue)) + + def issue_get(self, user, repo, action, filter_str, issues): + def red(s): + return '\033[91m{}\033[0m'.format(s) + + actions = dict( + open=lambda i: '{}\t{}'.format(i.number, not i.is_closed()), + close=lambda i: '{}\t{}'.format(i.number, i.is_closed()), + read=lambda i, notif: '{}\t{}'.format(i.number, not notif.is_unread()), + milestone=lambda i: '{}\t{}'.format(i.number, i.milestone and i.milestone.title or red('ΓΈ')), + subscription=lambda i: '{}\t{}'.format(i.number, notif.subscription().subscribed if is_notif else True), + label=lambda i, labels: '{}\t{}'.format(i.number, ','.join([l.name for l in labels]) if labels else red("ΓΈ") + )) + + yield "Id\tValue" + for label in self.issue_action(user, repo, action, None, filter_str, issues, actions): + yield label + + def issue_set(self, user, repo, action, value, filter_str, issues): + def set_subscription(issue, notif, is_notif): + raise ArgumentError('Cannot set subscription.') + actions = dict( + open=lambda issue: issue.reopen(), + close=lambda issue: issue.close(), + read=lambda issue, notif: notif.set_read() if notif.is_unread() else False, + milestone=lambda issue, m=None: issue.edit(milestone=m.number) if m else False, + subscription=set_subscription, + label=lambda issue, labels: issue.add_labels(*[l.name for l in labels]), + ) + return self.issue_action(user, repo, action, value, filter_str, issues, actions) + + def issue_unset(self, user, repo, action, value, filter_str, issues): + actions = dict( + open= lambda issue: issue.close(), + close=lambda issue: issue.reopen(), + label=lambda issue, labels: all([issue.remove_label(l.name) for l in labels]), + milestone=lambda issue: issue.edit(milestone=0), + read=lambda issue, notif: notif.mark(), + subscription=lambda issue, notif, is_notif: notif.delete_subscription(), + ) + return self.issue_action(user, repo, action, value, filter_str, issues, actions) + + def issue_toggle(self, user, repo, action, value, filter_str, issues): + actions = dict( + open= lambda issue: issue.reopen() if issue.is_closed() else issue.close(), + close=lambda issue: issue.close() if issue.is_closed() else issue.reopen(), + read= lambda issue, notif: notif.mark(), + label=lambda i, labels: i.replace_labels( + [l.name for l in set(i.iter_labels()).symmetric_difference(labels)]), + milestone=lambda i, m: i.edit(milestone=0) if i.milestone else i.edit(milestone=m.number), + subscription=lambda issue, notif: notif.delete_subscription(), + ) + return self.issue_action(user, repo, action, value, filter_str, issues, actions) + @classmethod def get_auth_token(cls, login, password, prompt=None): import platform diff --git a/git_repo/services/service.py b/git_repo/services/service.py index 2520656..67586d0 100644 --- a/git_repo/services/service.py +++ b/git_repo/services/service.py @@ -9,8 +9,10 @@ from git import RemoteProgress, config as git_config from progress.bar import IncrementalBar as Bar -from urllib.parse import ParseResult +from copy import deepcopy from subprocess import call +from urllib.parse import ParseResult +from pyparsing import commaSeparatedList from ..exceptions import ( ArgumentError, @@ -27,6 +29,10 @@ OPEN_COMMAND = 'xdg-open' +def parse_comma_string_to_list(s): + return commaSeparatedList.parseString(s) + + class ProgressBar(RemoteProgress): # pragma: no cover '''Nice looking progress bar for long running commands''' def setup(self, repo_name): @@ -482,6 +488,77 @@ def request_create(self, user, repo, from_branch, onto_branch, title, descriptio def user(self): #pragma: no cover raise NotImplementedError + def issue_label_list(self, user, repo): + ''' + ''' + raise NotImplementedError + + def issue_milestone_list(self, user, repo): + ''' + ''' + raise NotImplementedError + + def issue_grab(self, user, repo, issue_id): + ''' + ''' + raise NotImplementedError + + ISSUE_FILTER_DEFAULTS=dict() + + def issue_list_parse_filter_statement(self, filter_stmt, transform=None): + ''' + Facility to parse a comma separated list of pairs bound by a colon: + + ``` + >>> filter_stmt = 'keyA:val1, keyB:val2 ,keyC:val3,keyD:v:a:l4' + >>> print(issue_list_parse_filter_statement(filter_stmt)) + {'keyA': 'val1', 'keyB': 'val2', keyC: 'v:a:l4'} + ``` + + where all keys are defined in the `ISSUE_FILTER_DEFAULTS` class member, with + a default. If a key is the value will be appended. + ''' + params = deepcopy(self.ISSUE_FILTER_DEFAULTS) + + for f in parse_comma_string_to_list(filter_stmt): + if ':' in f: + param, value_head, *value_tail = f.split(':') + value = "".join([value_head] + value_tail) # fix labels containing : + if transform: + param, value = transform(param, value) + if not param in params.keys(): + raise ArgumentError('Unknown filter key {}'.format(param)) + if isinstance(params[param], list): + params[param].append(value) + else: + params[param] = value + return params + + def issue_list(self, user, repo, filter_str=''): + ''' + ''' + raise NotImplementedError + + def issue_edit(self, user, repo, issue, edit_cb): + ''' + ''' + raise NotImplementedError + + def issue_set(self, user, repo, action, value, filter_str, issues): + ''' + ''' + raise NotImplementedError + + def issue_unset(self, user, repo, action, filter_str, issues): + ''' + ''' + raise NotImplementedError + + def issue_toggle(self, user, repo, action, filter_str, issues): + ''' + ''' + raise NotImplementedError + ''' register all services by importing their modules, from the ext pagckage diff --git a/requirements.txt b/requirements.txt index 811d2e1..a707e82 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ docopt progress +pyparsing GitPython>=2.1.0 uritemplate.py==2.0.0 github3.py==0.9.5 diff --git a/tests/helpers.py b/tests/helpers.py index 648231c..4b658d9 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -805,6 +805,55 @@ def action_gist_delete(self, gist): self.service.connect() content = self.service.gist_delete(gist) + def action_issue_label_list(self, user, repo): + with self.recorder.use_cassette(self._make_cassette_name()): + self.service.connect() + content = self.service.issue_label_list(user, repo) + return list(content) + + def action_issue_milestone_list(self, user, repo): + with self.recorder.use_cassette(self._make_cassette_name()): + self.service.connect() + content = self.service.issue_milestone_list(user, repo) + return list(content) + + def action_issue_list(self, user, repo, filter_str=''): + with self.recorder.use_cassette(self._make_cassette_name()): + self.service.connect() + content = self.service.issue_list(user, repo, filter_str) + return list(content) + + def action_issue_grab(self, user, repo, issue_id): + with self.recorder.use_cassette(self._make_cassette_name()): + self.service.connect() + content = self.service.issue_grab(user, repo, issue_id) + return content + + def action_issue_edit(self, user, repo, issue, edit_cb): + with self.recorder.use_cassette(self._make_cassette_name()): + self.service.connect() + return self.service.issue_edit(user, repo, issue, edit_cb) + + def action_issue_get(self, user, repo, action, filter_str, issues): + with self.recorder.use_cassette(self._make_cassette_name()): + self.service.connect() + return list(self.service.issue_get(user, repo, action, filter_str, issues)) + + def action_issue_set(self, user, repo, action, value, filter_str, issues): + with self.recorder.use_cassette(self._make_cassette_name()): + self.service.connect() + return list(self.service.issue_set(user, repo, action, value, filter_str, issues)) + + def action_issue_unset(self, user, repo, action, value, filter_str, issues): + with self.recorder.use_cassette(self._make_cassette_name()): + self.service.connect() + return list(self.service.issue_unset(user, repo, action, value, filter_str, issues)) + + def action_issue_toggle(self, user, repo, action, value, filter_str, issues): + with self.recorder.use_cassette(self._make_cassette_name()): + self.service.connect() + return list(self.service.issue_toggle(user, repo, action, value, filter_str, issues)) + def action_open(self, namespace, repository): self.set_mock_popen_commands([ ('xdg-open {}'.format(self.service.format_path(namespace=namespace, repository=repository)), b'', b'', 0), diff --git a/tests/integration/cassettes/test_github_test_01_create_organization__already_exists.json b/tests/integration/cassettes/test_github_test_01_create_organization__already_exists.json index bcbd00c..1ed5305 100644 --- a/tests/integration/cassettes/test_github_test_01_create_organization__already_exists.json +++ b/tests/integration/cassettes/test_github_test_01_create_organization__already_exists.json @@ -166,6 +166,56 @@ }, "url": "https://api.github.com/orgs/test-git-repo/repos" } + }, + { + "recorded_at": "2017-02-01T03:15:02", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/orgs/test-git-repo" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Bad credentials\",\"documentation_url\":\"https://developer.github.com/v3\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "83", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 03:15:02 GMT", + "Server": "GitHub.com", + "Status": "401 Unauthorized", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "96FE:4114:926DEEA:BA55D2B:589152B6", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "59", + "X-RateLimit-Reset": "1485922502", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 401, + "message": "Unauthorized" + }, + "url": "https://api.github.com/orgs/test-git-repo" + } } ], "recorded_with": "betamax/0.5.1" diff --git a/tests/integration/cassettes/test_github_test_01_create_organization__new.json b/tests/integration/cassettes/test_github_test_01_create_organization__new.json index 0e73557..55393af 100644 --- a/tests/integration/cassettes/test_github_test_01_create_organization__new.json +++ b/tests/integration/cassettes/test_github_test_01_create_organization__new.json @@ -22,7 +22,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":null,\"public_repos\":87,\"public_gists\":17,\"followers\":54,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-09-03T19:19:47Z\"}" + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://guyzmo.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":null,\"public_repos\":87,\"public_gists\":17,\"followers\":54,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-09-03T19:19:47Z\"}" }, "headers": { "Access-Control-Allow-Origin": "*", @@ -79,7 +79,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"login\":\"test-git-repo\",\"id\":22862172,\"url\":\"https://api.github.com/orgs/test-git-repo\",\"repos_url\":\"https://api.github.com/orgs/test-git-repo/repos\",\"events_url\":\"https://api.github.com/orgs/test-git-repo/events\",\"hooks_url\":\"https://api.github.com/orgs/test-git-repo/hooks\",\"issues_url\":\"https://api.github.com/orgs/test-git-repo/issues\",\"members_url\":\"https://api.github.com/orgs/test-git-repo/members{/member}\",\"public_members_url\":\"https://api.github.com/orgs/test-git-repo/public_members{/member}\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/22862172?v=3\",\"description\":null,\"public_repos\":1,\"public_gists\":0,\"followers\":0,\"following\":0,\"html_url\":\"https://github.com/test-git-repo\",\"created_at\":\"2016-10-16T00:09:22Z\",\"updated_at\":\"2016-10-16T00:09:22Z\",\"type\":\"Organization\",\"total_private_repos\":0,\"owned_private_repos\":0,\"private_gists\":0,\"disk_usage\":0,\"collaborators\":0,\"billing_email\":\"<GITHUB_NAMESPACE>+test-git-repo+git-repo+github@m0g.net\",\"plan\":{\"name\":\"free\",\"space\":976562499,\"private_repos\":0,\"filled_seats\":1,\"seats\":0}}" + "string": "{\"login\":\"test-git-repo\",\"id\":22862172,\"url\":\"https://api.github.com/orgs/test-git-repo\",\"repos_url\":\"https://api.github.com/orgs/test-git-repo/repos\",\"events_url\":\"https://api.github.com/orgs/test-git-repo/events\",\"hooks_url\":\"https://api.github.com/orgs/test-git-repo/hooks\",\"issues_url\":\"https://api.github.com/orgs/test-git-repo/issues\",\"members_url\":\"https://api.github.com/orgs/test-git-repo/members{/member}\",\"public_members_url\":\"https://api.github.com/orgs/test-git-repo/public_members{/member}\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/22862172?v=3\",\"description\":null,\"public_repos\":1,\"public_gists\":0,\"followers\":0,\"following\":0,\"html_url\":\"https://github.com/test-git-repo\",\"created_at\":\"2016-10-16T00:09:22Z\",\"updated_at\":\"2016-10-16T00:09:22Z\",\"type\":\"Organization\",\"total_private_repos\":0,\"owned_private_repos\":0,\"private_gists\":0,\"disk_usage\":0,\"collaborators\":0,\"billing_email\":\"test+test-git-repo+git-repo+github@m0g.net\",\"plan\":{\"name\":\"free\",\"space\":976562499,\"private_repos\":0,\"filled_seats\":1,\"seats\":0}}" }, "headers": { "Access-Control-Allow-Origin": "*", @@ -228,6 +228,106 @@ }, "url": "https://api.github.com/repos/test-git-repo/foobar" } + }, + { + "recorded_at": "2017-02-01T02:13:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/orgs/test-git-repo" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Bad credentials\",\"documentation_url\":\"https://developer.github.com/v3\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "83", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:13:59 GMT", + "Server": "GitHub.com", + "Status": "401 Unauthorized", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "898A:4114:92061FF:B9D235A:58914467", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "59", + "X-RateLimit-Reset": "1485918839", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 401, + "message": "Unauthorized" + }, + "url": "https://api.github.com/orgs/test-git-repo" + } + }, + { + "recorded_at": "2017-02-01T03:00:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/orgs/test-git-repo" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Bad credentials\",\"documentation_url\":\"https://developer.github.com/v3\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "83", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 03:00:53 GMT", + "Server": "GitHub.com", + "Status": "401 Unauthorized", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EA92:4114:92559BF:BA37622:58914F65", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "57", + "X-RateLimit-Reset": "1485918839", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 401, + "message": "Unauthorized" + }, + "url": "https://api.github.com/orgs/test-git-repo" + } } ], "recorded_with": "betamax/0.5.1" diff --git a/tests/integration/cassettes/test_github_test_13_gist_list.json b/tests/integration/cassettes/test_github_test_13_gist_list.json index 80431e2..b3eef5b 100644 --- a/tests/integration/cassettes/test_github_test_13_gist_list.json +++ b/tests/integration/cassettes/test_github_test_13_gist_list.json @@ -79,7 +79,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "[{\"url\":\"https://api.github.com/gists/a7ce4fddba7744ddf335\",\"forks_url\":\"https://api.github.com/gists/a7ce4fddba7744ddf335/forks\",\"commits_url\":\"https://api.github.com/gists/a7ce4fddba7744ddf335/commits\",\"id\":\"a7ce4fddba7744ddf335\",\"git_pull_url\":\"https://gist.github.com/a7ce4fddba7744ddf335.git\",\"git_push_url\":\"https://gist.github.com/a7ce4fddba7744ddf335.git\",\"html_url\":\"https://gist.github.com/a7ce4fddba7744ddf335\",\"files\":{\"unicode_combined.py\":{\"filename\":\"unicode_combined.py\",\"type\":\"application/x-python\",\"language\":\"Python\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/a7ce4fddba7744ddf335/raw/cbeef8e3e1394c03bade9adbfe0d7d2dce7b279c/unicode_combined.py\",\"size\":1048}},\"public\":true,\"created_at\":\"2015-12-26T18:30:26Z\",\"updated_at\":\"2015-12-26T18:52:22Z\",\"description\":\"unicode combined class for better character counting and indexing\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/a7ce4fddba7744ddf335/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/7e5a12bc158a79966020\",\"forks_url\":\"https://api.github.com/gists/7e5a12bc158a79966020/forks\",\"commits_url\":\"https://api.github.com/gists/7e5a12bc158a79966020/commits\",\"id\":\"7e5a12bc158a79966020\",\"git_pull_url\":\"https://gist.github.com/7e5a12bc158a79966020.git\",\"git_push_url\":\"https://gist.github.com/7e5a12bc158a79966020.git\",\"html_url\":\"https://gist.github.com/7e5a12bc158a79966020\",\"files\":{\"avr-gcc-build.log\":{\"filename\":\"avr-gcc-build.log\",\"type\":\"text/plain\",\"language\":null,\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/7e5a12bc158a79966020/raw/de8654efdbef498b8b44190e030eb6e00b30df17/avr-gcc-build.log\",\"size\":75699}},\"public\":false,\"created_at\":\"2015-02-21T23:58:56Z\",\"updated_at\":\"2015-08-29T14:15:54Z\",\"description\":\"avr-gcc derivation build\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/7e5a12bc158a79966020/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/dd9ab22c8f22a5a8f3d1\",\"forks_url\":\"https://api.github.com/gists/dd9ab22c8f22a5a8f3d1/forks\",\"commits_url\":\"https://api.github.com/gists/dd9ab22c8f22a5a8f3d1/commits\",\"id\":\"dd9ab22c8f22a5a8f3d1\",\"git_pull_url\":\"https://gist.github.com/dd9ab22c8f22a5a8f3d1.git\",\"git_push_url\":\"https://gist.github.com/dd9ab22c8f22a5a8f3d1.git\",\"html_url\":\"https://gist.github.com/dd9ab22c8f22a5a8f3d1\",\"files\":{\"avrlibcgcc.nix\":{\"filename\":\"avrlibcgcc.nix\",\"type\":\"text/plain\",\"language\":\"Nix\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/dd9ab22c8f22a5a8f3d1/raw/5c6810bb348acd48accdc95128545da39c15e76c/avrlibcgcc.nix\",\"size\":2626}},\"public\":false,\"created_at\":\"2015-02-21T23:57:22Z\",\"updated_at\":\"2015-08-29T14:15:54Z\",\"description\":\"avr-gcc derivation\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/dd9ab22c8f22a5a8f3d1/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/893fbc98bf1c9cf6212a\",\"forks_url\":\"https://api.github.com/gists/893fbc98bf1c9cf6212a/forks\",\"commits_url\":\"https://api.github.com/gists/893fbc98bf1c9cf6212a/commits\",\"id\":\"893fbc98bf1c9cf6212a\",\"git_pull_url\":\"https://gist.github.com/893fbc98bf1c9cf6212a.git\",\"git_push_url\":\"https://gist.github.com/893fbc98bf1c9cf6212a.git\",\"html_url\":\"https://gist.github.com/893fbc98bf1c9cf6212a\",\"files\":{\"mplabx_install_success.log\":{\"filename\":\"mplabx_install_success.log\",\"type\":\"text/plain\",\"language\":null,\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/893fbc98bf1c9cf6212a/raw/6846ab5faabf1323917a07efb833898b4fc62d95/mplabx_install_success.log\",\"size\":3850}},\"public\":false,\"created_at\":\"2015-02-11T14:24:30Z\",\"updated_at\":\"2015-08-29T14:15:15Z\",\"description\":\"`brew cask install mplabx` fixed\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/893fbc98bf1c9cf6212a/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/9baed8712a16a29c2e90\",\"forks_url\":\"https://api.github.com/gists/9baed8712a16a29c2e90/forks\",\"commits_url\":\"https://api.github.com/gists/9baed8712a16a29c2e90/commits\",\"id\":\"9baed8712a16a29c2e90\",\"git_pull_url\":\"https://gist.github.com/9baed8712a16a29c2e90.git\",\"git_push_url\":\"https://gist.github.com/9baed8712a16a29c2e90.git\",\"html_url\":\"https://gist.github.com/9baed8712a16a29c2e90\",\"files\":{\"mplabx_install_failure.log\":{\"filename\":\"mplabx_install_failure.log\",\"type\":\"text/plain\",\"language\":null,\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/9baed8712a16a29c2e90/raw/98883d8a5c6522e183cb9543121282b2e9595654/mplabx_install_failure.log\",\"size\":5675}},\"public\":false,\"created_at\":\"2015-02-11T14:11:05Z\",\"updated_at\":\"2015-08-29T14:15:15Z\",\"description\":\"`brew cask install mplabx` issue with target in /usr/local/mplabx\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/9baed8712a16a29c2e90/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/1c03ddfdc8f57fa7919a\",\"forks_url\":\"https://api.github.com/gists/1c03ddfdc8f57fa7919a/forks\",\"commits_url\":\"https://api.github.com/gists/1c03ddfdc8f57fa7919a/commits\",\"id\":\"1c03ddfdc8f57fa7919a\",\"git_pull_url\":\"https://gist.github.com/1c03ddfdc8f57fa7919a.git\",\"git_push_url\":\"https://gist.github.com/1c03ddfdc8f57fa7919a.git\",\"html_url\":\"https://gist.github.com/1c03ddfdc8f57fa7919a\",\"files\":{\"mplabx_commented_out.rb\":{\"filename\":\"mplabx_commented_out.rb\",\"type\":\"application/x-ruby\",\"language\":\"Ruby\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/1c03ddfdc8f57fa7919a/raw/dfa972ee2daffbf9d8b772c3686823078b55e677/mplabx_commented_out.rb\",\"size\":870}},\"public\":false,\"created_at\":\"2015-02-11T13:47:35Z\",\"updated_at\":\"2015-08-29T14:15:15Z\",\"description\":\"cask formula for mplabx (stripped down)\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/1c03ddfdc8f57fa7919a/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/21949a3fa5f981a869bf\",\"forks_url\":\"https://api.github.com/gists/21949a3fa5f981a869bf/forks\",\"commits_url\":\"https://api.github.com/gists/21949a3fa5f981a869bf/commits\",\"id\":\"21949a3fa5f981a869bf\",\"git_pull_url\":\"https://gist.github.com/21949a3fa5f981a869bf.git\",\"git_push_url\":\"https://gist.github.com/21949a3fa5f981a869bf.git\",\"html_url\":\"https://gist.github.com/21949a3fa5f981a869bf\",\"files\":{\"cask_install_mplabx.log\":{\"filename\":\"cask_install_mplabx.log\",\"type\":\"text/plain\",\"language\":null,\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/21949a3fa5f981a869bf/raw/724e7f667f747bd05784541ed855bce5bfc99dc9/cask_install_mplabx.log\",\"size\":7729}},\"public\":false,\"created_at\":\"2015-02-10T13:57:33Z\",\"updated_at\":\"2015-08-29T14:15:09Z\",\"description\":\"`brew cask install mplabx` issue removing the caskroom dir!\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/21949a3fa5f981a869bf/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/588deedefc1675998bbe\",\"forks_url\":\"https://api.github.com/gists/588deedefc1675998bbe/forks\",\"commits_url\":\"https://api.github.com/gists/588deedefc1675998bbe/commits\",\"id\":\"588deedefc1675998bbe\",\"git_pull_url\":\"https://gist.github.com/588deedefc1675998bbe.git\",\"git_push_url\":\"https://gist.github.com/588deedefc1675998bbe.git\",\"html_url\":\"https://gist.github.com/588deedefc1675998bbe\",\"files\":{\"mplabx.rb\":{\"filename\":\"mplabx.rb\",\"type\":\"application/x-ruby\",\"language\":\"Ruby\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/588deedefc1675998bbe/raw/7bb82257cbd0d1269a1b1e7fc81090ed664d163e/mplabx.rb\",\"size\":492}},\"public\":true,\"created_at\":\"2015-02-06T17:00:21Z\",\"updated_at\":\"2015-08-29T14:14:55Z\",\"description\":\"cask formula for mplabx\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/588deedefc1675998bbe/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/281502e4ae6fce01db92\",\"forks_url\":\"https://api.github.com/gists/281502e4ae6fce01db92/forks\",\"commits_url\":\"https://api.github.com/gists/281502e4ae6fce01db92/commits\",\"id\":\"281502e4ae6fce01db92\",\"git_pull_url\":\"https://gist.github.com/281502e4ae6fce01db92.git\",\"git_push_url\":\"https://gist.github.com/281502e4ae6fce01db92.git\",\"html_url\":\"https://gist.github.com/281502e4ae6fce01db92\",\"files\":{\"taskjuggler_test0rburn0r.tjp\":{\"filename\":\"taskjuggler_test0rburn0r.tjp\",\"type\":\"text/plain\",\"language\":null,\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/281502e4ae6fce01db92/raw/d487f79c3418db30a58d1d31632b74a340637c2b/taskjuggler_test0rburn0r.tjp\",\"size\":2244}},\"public\":false,\"created_at\":\"2015-01-07T16:53:14Z\",\"updated_at\":\"2015-08-29T14:13:01Z\",\"description\":\"TaskJuggler example\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/281502e4ae6fce01db92/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/06c5b0da8d10c514166f\",\"forks_url\":\"https://api.github.com/gists/06c5b0da8d10c514166f/forks\",\"commits_url\":\"https://api.github.com/gists/06c5b0da8d10c514166f/commits\",\"id\":\"06c5b0da8d10c514166f\",\"git_pull_url\":\"https://gist.github.com/06c5b0da8d10c514166f.git\",\"git_push_url\":\"https://gist.github.com/06c5b0da8d10c514166f.git\",\"html_url\":\"https://gist.github.com/06c5b0da8d10c514166f\",\"files\":{\"gistfile1.rb\":{\"filename\":\"gistfile1.rb\",\"type\":\"application/x-ruby\",\"language\":\"Ruby\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/06c5b0da8d10c514166f/raw/671cfbb180ff8259adfb4f2032a91f331bb7eaa7/gistfile1.rb\",\"size\":1547}},\"public\":false,\"created_at\":\"2015-01-05T11:06:10Z\",\"updated_at\":\"2015-08-29T14:12:50Z\",\"description\":\"redmine to taskjuggler recursive func\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/06c5b0da8d10c514166f/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/603ccdd0f504c63cd0df\",\"forks_url\":\"https://api.github.com/gists/603ccdd0f504c63cd0df/forks\",\"commits_url\":\"https://api.github.com/gists/603ccdd0f504c63cd0df/commits\",\"id\":\"603ccdd0f504c63cd0df\",\"git_pull_url\":\"https://gist.github.com/603ccdd0f504c63cd0df.git\",\"git_push_url\":\"https://gist.github.com/603ccdd0f504c63cd0df.git\",\"html_url\":\"https://gist.github.com/603ccdd0f504c63cd0df\",\"files\":{\"simple-example-login-principals.py\":{\"filename\":\"simple-example-login-principals.py\",\"type\":\"application/x-python\",\"language\":\"Python\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/603ccdd0f504c63cd0df/raw/a29241fa708806eaa5177b13f9aba44018554236/simple-example-login-principals.py\",\"size\":3479}},\"public\":true,\"created_at\":\"2014-10-03T16:24:44Z\",\"updated_at\":\"2015-08-29T14:07:13Z\",\"description\":\"Simple example of Flask/Presst with Login and Principals (not working!)\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/603ccdd0f504c63cd0df/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/2482962b153ebd5cfa6b\",\"forks_url\":\"https://api.github.com/gists/2482962b153ebd5cfa6b/forks\",\"commits_url\":\"https://api.github.com/gists/2482962b153ebd5cfa6b/commits\",\"id\":\"2482962b153ebd5cfa6b\",\"git_pull_url\":\"https://gist.github.com/2482962b153ebd5cfa6b.git\",\"git_push_url\":\"https://gist.github.com/2482962b153ebd5cfa6b.git\",\"html_url\":\"https://gist.github.com/2482962b153ebd5cfa6b\",\"files\":{\"gistfile1.txt\":{\"filename\":\"gistfile1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/2482962b153ebd5cfa6b/raw/97fbb8096ed6c275cf1c40ae05cc6f048506e448/gistfile1.txt\",\"size\":52625}},\"public\":false,\"created_at\":\"2014-06-27T12:03:19Z\",\"updated_at\":\"2015-08-29T14:03:08Z\",\"description\":\"radial colour picker crash\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/2482962b153ebd5cfa6b/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/fc46896f3e604269ff93\",\"forks_url\":\"https://api.github.com/gists/fc46896f3e604269ff93/forks\",\"commits_url\":\"https://api.github.com/gists/fc46896f3e604269ff93/commits\",\"id\":\"fc46896f3e604269ff93\",\"git_pull_url\":\"https://gist.github.com/fc46896f3e604269ff93.git\",\"git_push_url\":\"https://gist.github.com/fc46896f3e604269ff93.git\",\"html_url\":\"https://gist.github.com/fc46896f3e604269ff93\",\"files\":{\"platform_level.gcode\":{\"filename\":\"platform_level.gcode\",\"type\":\"text/plain\",\"language\":\"G-code\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/fc46896f3e604269ff93/raw/ce29305d77b864376db6383f416f22ff08a6506e/platform_level.gcode\",\"size\":320}},\"public\":false,\"created_at\":\"2014-06-06T15:23:41Z\",\"updated_at\":\"2015-08-29T14:02:18Z\",\"description\":\"Platform levelling GCode file\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/fc46896f3e604269ff93/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/3b18193d6bea07bac37c\",\"forks_url\":\"https://api.github.com/gists/3b18193d6bea07bac37c/forks\",\"commits_url\":\"https://api.github.com/gists/3b18193d6bea07bac37c/commits\",\"id\":\"3b18193d6bea07bac37c\",\"git_pull_url\":\"https://gist.github.com/3b18193d6bea07bac37c.git\",\"git_push_url\":\"https://gist.github.com/3b18193d6bea07bac37c.git\",\"html_url\":\"https://gist.github.com/3b18193d6bea07bac37c\",\"files\":{\"pluzz.py\":{\"filename\":\"pluzz.py\",\"type\":\"application/x-python\",\"language\":\"Python\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/3b18193d6bea07bac37c/raw/1acbf72161c5e25d14ecb93a01fb4830c1602d98/pluzz.py\",\"size\":9422}},\"public\":true,\"created_at\":\"2014-05-09T15:03:47Z\",\"updated_at\":\"2015-08-29T14:01:13Z\",\"description\":\"Code to download movies from pluzz\",\"comments\":1,\"user\":null,\"comments_url\":\"https://api.github.com/gists/3b18193d6bea07bac37c/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/c01613d0453df275622a\",\"forks_url\":\"https://api.github.com/gists/c01613d0453df275622a/forks\",\"commits_url\":\"https://api.github.com/gists/c01613d0453df275622a/commits\",\"id\":\"c01613d0453df275622a\",\"git_pull_url\":\"https://gist.github.com/c01613d0453df275622a.git\",\"git_push_url\":\"https://gist.github.com/c01613d0453df275622a.git\",\"html_url\":\"https://gist.github.com/c01613d0453df275622a\",\"files\":{\"gistfile1.txt\":{\"filename\":\"gistfile1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/c01613d0453df275622a/raw/4c59ef4f610dc055f5973e41f5f6d89da8373db8/gistfile1.txt\",\"size\":4679}},\"public\":false,\"created_at\":\"2014-04-21T13:28:51Z\",\"updated_at\":\"2015-08-29T14:00:16Z\",\"description\":\"\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/c01613d0453df275622a/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/10118958\",\"forks_url\":\"https://api.github.com/gists/10118958/forks\",\"commits_url\":\"https://api.github.com/gists/10118958/commits\",\"id\":\"10118958\",\"git_pull_url\":\"https://gist.github.com/10118958.git\",\"git_push_url\":\"https://gist.github.com/10118958.git\",\"html_url\":\"https://gist.github.com/10118958\",\"files\":{\"i2c_scanner.c\":{\"filename\":\"i2c_scanner.c\",\"type\":\"text/plain\",\"language\":\"C\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/10118958/raw/bbc8ec3611c82adb71f55c524cda9a92529b9563/i2c_scanner.c\",\"size\":2542}},\"public\":true,\"created_at\":\"2014-04-08T12:48:36Z\",\"updated_at\":\"2015-08-29T13:58:21Z\",\"description\":\"I2C scanner code for SL030\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/10118958/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/5b79437ddd3f49491ce3\",\"forks_url\":\"https://api.github.com/gists/5b79437ddd3f49491ce3/forks\",\"commits_url\":\"https://api.github.com/gists/5b79437ddd3f49491ce3/commits\",\"id\":\"5b79437ddd3f49491ce3\",\"git_pull_url\":\"https://gist.github.com/5b79437ddd3f49491ce3.git\",\"git_push_url\":\"https://gist.github.com/5b79437ddd3f49491ce3.git\",\"html_url\":\"https://gist.github.com/5b79437ddd3f49491ce3\",\"files\":{\"AvrSerial.h\":{\"filename\":\"AvrSerial.h\",\"type\":\"text/plain\",\"language\":\"C++\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/5b79437ddd3f49491ce3/raw/0f1e24ff4caae02afa046e48cdddc569268aa741/AvrSerial.h\",\"size\":11200}},\"public\":false,\"created_at\":\"2014-03-04T19:07:24Z\",\"updated_at\":\"2015-08-29T13:57:00Z\",\"description\":\"\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/5b79437ddd3f49491ce3/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/5730750\",\"forks_url\":\"https://api.github.com/gists/5730750/forks\",\"commits_url\":\"https://api.github.com/gists/5730750/commits\",\"id\":\"5730750\",\"git_pull_url\":\"https://gist.github.com/5730750.git\",\"git_push_url\":\"https://gist.github.com/5730750.git\",\"html_url\":\"https://gist.github.com/5730750\",\"files\":{\"stackoverflow_inbox.py\":{\"filename\":\"stackoverflow_inbox.py\",\"type\":\"application/x-python\",\"language\":\"Python\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/5730750/raw/172e9a35c92ed087c171f68aee46a13a23e7cc45/stackoverflow_inbox.py\",\"size\":3217}},\"public\":true,\"created_at\":\"2013-06-07T17:03:08Z\",\"updated_at\":\"2015-12-18T05:09:32Z\",\"description\":\"An enhanced implementation of authenticating to stackoverflow using python.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/5730750/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/4308707\",\"forks_url\":\"https://api.github.com/gists/4308707/forks\",\"commits_url\":\"https://api.github.com/gists/4308707/commits\",\"id\":\"4308707\",\"git_pull_url\":\"https://gist.github.com/4308707.git\",\"git_push_url\":\"https://gist.github.com/4308707.git\",\"html_url\":\"https://gist.github.com/4308707\",\"files\":{\"strigi_osx10.6.8_homebrew.patch\":{\"filename\":\"strigi_osx10.6.8_homebrew.patch\",\"type\":\"text/plain\",\"language\":\"Diff\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/4308707/raw/3c891fff95bb59359a45593c104919fcf702beaf/strigi_osx10.6.8_homebrew.patch\",\"size\":14775}},\"public\":true,\"created_at\":\"2012-12-16T15:46:38Z\",\"updated_at\":\"2015-12-09T18:18:36Z\",\"description\":\"Patch to be applied for homebrew's strigi.rb Formula.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/4308707/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/4170462\",\"forks_url\":\"https://api.github.com/gists/4170462/forks\",\"commits_url\":\"https://api.github.com/gists/4170462/commits\",\"id\":\"4170462\",\"git_pull_url\":\"https://gist.github.com/4170462.git\",\"git_push_url\":\"https://gist.github.com/4170462.git\",\"html_url\":\"https://gist.github.com/4170462\",\"files\":{\"freevpn0.029__platform__io.patch\":{\"filename\":\"freevpn0.029__platform__io.patch\",\"type\":\"text/plain\",\"language\":\"Diff\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/4170462/raw/6460aa7cd015cc2a5f4128c5b1952b912073f5cd/freevpn0.029__platform__io.patch\",\"size\":488}},\"public\":true,\"created_at\":\"2012-11-29T17:11:37Z\",\"updated_at\":\"2015-10-13T08:48:11Z\",\"description\":\"Patch for strnlen support in freevpn (for OSX 10.6)\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/4170462/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/3666086\",\"forks_url\":\"https://api.github.com/gists/3666086/forks\",\"commits_url\":\"https://api.github.com/gists/3666086/commits\",\"id\":\"3666086\",\"git_pull_url\":\"https://gist.github.com/3666086.git\",\"git_push_url\":\"https://gist.github.com/3666086.git\",\"html_url\":\"https://gist.github.com/3666086\",\"files\":{\"0001-added-quotes-to-multiline-strings.patch\":{\"filename\":\"0001-added-quotes-to-multiline-strings.patch\",\"type\":\"text/plain\",\"language\":\"Diff\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/3666086/raw/57d77f8c0bd541d4f66bad08fbdf592b433834b5/0001-added-quotes-to-multiline-strings.patch\",\"size\":2657}},\"public\":true,\"created_at\":\"2012-09-07T13:01:29Z\",\"updated_at\":\"2015-10-10T08:58:01Z\",\"description\":\"z.sh patch for multiline quotes\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/3666086/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/2788003\",\"forks_url\":\"https://api.github.com/gists/2788003/forks\",\"commits_url\":\"https://api.github.com/gists/2788003/commits\",\"id\":\"2788003\",\"git_pull_url\":\"https://gist.github.com/2788003.git\",\"git_push_url\":\"https://gist.github.com/2788003.git\",\"html_url\":\"https://gist.github.com/2788003\",\"files\":{\"tornado_event_source_client.py\":{\"filename\":\"tornado_event_source_client.py\",\"type\":\"application/x-python\",\"language\":\"Python\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/2788003/raw/2037b1efb89ff21e5c8eac996c29881cefe7bf29/tornado_event_source_client.py\",\"size\":3391},\"tornado_event_source_lib.py\":{\"filename\":\"tornado_event_source_lib.py\",\"type\":\"application/x-python\",\"language\":\"Python\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/2788003/raw/1adfbdda47a1043ba86a69b6e6fcefeca29bb152/tornado_event_source_lib.py\",\"size\":8806}},\"public\":true,\"created_at\":\"2012-05-25T13:01:32Z\",\"updated_at\":\"2015-10-05T09:38:05Z\",\"description\":\"A Tornado-based library that enables Event Source support !\",\"comments\":1,\"user\":null,\"comments_url\":\"https://api.github.com/gists/2788003/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false}]" + "string": "[{\"url\":\"https://api.github.com/gists/a7ce4fddba7744ddf335\",\"forks_url\":\"https://api.github.com/gists/a7ce4fddba7744ddf335/forks\",\"commits_url\":\"https://api.github.com/gists/a7ce4fddba7744ddf335/commits\",\"id\":\"a7ce4fddba7744ddf335\",\"git_pull_url\":\"https://gist.github.com/a7ce4fddba7744ddf335.git\",\"git_push_url\":\"https://gist.github.com/a7ce4fddba7744ddf335.git\",\"html_url\":\"https://gist.github.com/a7ce4fddba7744ddf335\",\"files\":{\"unicode_combined.py\":{\"filename\":\"unicode_combined.py\",\"type\":\"application/x-python\",\"language\":\"Python\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/a7ce4fddba7744ddf335/raw/cbeef8e3e1394c03bade9adbfe0d7d2dce7b279c/unicode_combined.py\",\"size\":1048}},\"public\":true,\"created_at\":\"2015-12-26T18:30:26Z\",\"updated_at\":\"2015-12-26T18:52:22Z\",\"description\":\"unicode combined class for better character counting and indexing\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/a7ce4fddba7744ddf335/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/7e5a12bc158a79966020\",\"forks_url\":\"https://api.github.com/gists/7e5a12bc158a79966020/forks\",\"commits_url\":\"https://api.github.com/gists/7e5a12bc158a79966020/commits\",\"id\":\"7e5a12bc158a79966020\",\"git_pull_url\":\"https://gist.github.com/7e5a12bc158a79966020.git\",\"git_push_url\":\"https://gist.github.com/7e5a12bc158a79966020.git\",\"html_url\":\"https://gist.github.com/7e5a12bc158a79966020\",\"files\":{\"avr-gcc-build.log\":{\"filename\":\"avr-gcc-build.log\",\"type\":\"text/plain\",\"language\":null,\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/7e5a12bc158a79966020/raw/de8654efdbef498b8b44190e030eb6e00b30df17/avr-gcc-build.log\",\"size\":75699}},\"public\":false,\"created_at\":\"2015-02-21T23:58:56Z\",\"updated_at\":\"2015-08-29T14:15:54Z\",\"description\":\"avr-gcc derivation build\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/7e5a12bc158a79966020/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/dd9ab22c8f22a5a8f3d1\",\"forks_url\":\"https://api.github.com/gists/dd9ab22c8f22a5a8f3d1/forks\",\"commits_url\":\"https://api.github.com/gists/dd9ab22c8f22a5a8f3d1/commits\",\"id\":\"dd9ab22c8f22a5a8f3d1\",\"git_pull_url\":\"https://gist.github.com/dd9ab22c8f22a5a8f3d1.git\",\"git_push_url\":\"https://gist.github.com/dd9ab22c8f22a5a8f3d1.git\",\"html_url\":\"https://gist.github.com/dd9ab22c8f22a5a8f3d1\",\"files\":{\"avrlibcgcc.nix\":{\"filename\":\"avrlibcgcc.nix\",\"type\":\"text/plain\",\"language\":\"Nix\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/dd9ab22c8f22a5a8f3d1/raw/5c6810bb348acd48accdc95128545da39c15e76c/avrlibcgcc.nix\",\"size\":2626}},\"public\":false,\"created_at\":\"2015-02-21T23:57:22Z\",\"updated_at\":\"2015-08-29T14:15:54Z\",\"description\":\"avr-gcc derivation\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/dd9ab22c8f22a5a8f3d1/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/893fbc98bf1c9cf6212a\",\"forks_url\":\"https://api.github.com/gists/893fbc98bf1c9cf6212a/forks\",\"commits_url\":\"https://api.github.com/gists/893fbc98bf1c9cf6212a/commits\",\"id\":\"893fbc98bf1c9cf6212a\",\"git_pull_url\":\"https://gist.github.com/893fbc98bf1c9cf6212a.git\",\"git_push_url\":\"https://gist.github.com/893fbc98bf1c9cf6212a.git\",\"html_url\":\"https://gist.github.com/893fbc98bf1c9cf6212a\",\"files\":{\"mplabx_install_success.log\":{\"filename\":\"mplabx_install_success.log\",\"type\":\"text/plain\",\"language\":null,\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/893fbc98bf1c9cf6212a/raw/6846ab5faabf1323917a07efb833898b4fc62d95/mplabx_install_success.log\",\"size\":3850}},\"public\":false,\"created_at\":\"2015-02-11T14:24:30Z\",\"updated_at\":\"2015-08-29T14:15:15Z\",\"description\":\"`brew cask install mplabx` fixed\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/893fbc98bf1c9cf6212a/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/9baed8712a16a29c2e90\",\"forks_url\":\"https://api.github.com/gists/9baed8712a16a29c2e90/forks\",\"commits_url\":\"https://api.github.com/gists/9baed8712a16a29c2e90/commits\",\"id\":\"9baed8712a16a29c2e90\",\"git_pull_url\":\"https://gist.github.com/9baed8712a16a29c2e90.git\",\"git_push_url\":\"https://gist.github.com/9baed8712a16a29c2e90.git\",\"html_url\":\"https://gist.github.com/9baed8712a16a29c2e90\",\"files\":{\"mplabx_install_failure.log\":{\"filename\":\"mplabx_install_failure.log\",\"type\":\"text/plain\",\"language\":null,\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/9baed8712a16a29c2e90/raw/98883d8a5c6522e183cb9543121282b2e9595654/mplabx_install_failure.log\",\"size\":5675}},\"public\":false,\"created_at\":\"2015-02-11T14:11:05Z\",\"updated_at\":\"2015-08-29T14:15:15Z\",\"description\":\"`brew cask install mplabx` issue with target in /usr/local/mplabx\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/9baed8712a16a29c2e90/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/1c03ddfdc8f57fa7919a\",\"forks_url\":\"https://api.github.com/gists/1c03ddfdc8f57fa7919a/forks\",\"commits_url\":\"https://api.github.com/gists/1c03ddfdc8f57fa7919a/commits\",\"id\":\"1c03ddfdc8f57fa7919a\",\"git_pull_url\":\"https://gist.github.com/1c03ddfdc8f57fa7919a.git\",\"git_push_url\":\"https://gist.github.com/1c03ddfdc8f57fa7919a.git\",\"html_url\":\"https://gist.github.com/1c03ddfdc8f57fa7919a\",\"files\":{\"mplabx_commented_out.rb\":{\"filename\":\"mplabx_commented_out.rb\",\"type\":\"application/x-ruby\",\"language\":\"Ruby\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/1c03ddfdc8f57fa7919a/raw/dfa972ee2daffbf9d8b772c3686823078b55e677/mplabx_commented_out.rb\",\"size\":870}},\"public\":false,\"created_at\":\"2015-02-11T13:47:35Z\",\"updated_at\":\"2015-08-29T14:15:15Z\",\"description\":\"cask formula for mplabx (stripped down)\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/1c03ddfdc8f57fa7919a/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/21949a3fa5f981a869bf\",\"forks_url\":\"https://api.github.com/gists/21949a3fa5f981a869bf/forks\",\"commits_url\":\"https://api.github.com/gists/21949a3fa5f981a869bf/commits\",\"id\":\"21949a3fa5f981a869bf\",\"git_pull_url\":\"https://gist.github.com/21949a3fa5f981a869bf.git\",\"git_push_url\":\"https://gist.github.com/21949a3fa5f981a869bf.git\",\"html_url\":\"https://gist.github.com/21949a3fa5f981a869bf\",\"files\":{\"cask_install_mplabx.log\":{\"filename\":\"cask_install_mplabx.log\",\"type\":\"text/plain\",\"language\":null,\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/21949a3fa5f981a869bf/raw/724e7f667f747bd05784541ed855bce5bfc99dc9/cask_install_mplabx.log\",\"size\":7729}},\"public\":false,\"created_at\":\"2015-02-10T13:57:33Z\",\"updated_at\":\"2015-08-29T14:15:09Z\",\"description\":\"`brew cask install mplabx` issue removing the caskroom dir!\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/21949a3fa5f981a869bf/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/588deedefc1675998bbe\",\"forks_url\":\"https://api.github.com/gists/588deedefc1675998bbe/forks\",\"commits_url\":\"https://api.github.com/gists/588deedefc1675998bbe/commits\",\"id\":\"588deedefc1675998bbe\",\"git_pull_url\":\"https://gist.github.com/588deedefc1675998bbe.git\",\"git_push_url\":\"https://gist.github.com/588deedefc1675998bbe.git\",\"html_url\":\"https://gist.github.com/588deedefc1675998bbe\",\"files\":{\"mplabx.rb\":{\"filename\":\"mplabx.rb\",\"type\":\"application/x-ruby\",\"language\":\"Ruby\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/588deedefc1675998bbe/raw/7bb82257cbd0d1269a1b1e7fc81090ed664d163e/mplabx.rb\",\"size\":492}},\"public\":true,\"created_at\":\"2015-02-06T17:00:21Z\",\"updated_at\":\"2015-08-29T14:14:55Z\",\"description\":\"cask formula for mplabx\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/588deedefc1675998bbe/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/281502e4ae6fce01db92\",\"forks_url\":\"https://api.github.com/gists/281502e4ae6fce01db92/forks\",\"commits_url\":\"https://api.github.com/gists/281502e4ae6fce01db92/commits\",\"id\":\"281502e4ae6fce01db92\",\"git_pull_url\":\"https://gist.github.com/281502e4ae6fce01db92.git\",\"git_push_url\":\"https://gist.github.com/281502e4ae6fce01db92.git\",\"html_url\":\"https://gist.github.com/281502e4ae6fce01db92\",\"files\":{\"taskjuggler_<GITHUB_NAMESPACE>0rburn0r.tjp\":{\"filename\":\"taskjuggler_<GITHUB_NAMESPACE>0rburn0r.tjp\",\"type\":\"text/plain\",\"language\":null,\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/281502e4ae6fce01db92/raw/d487f79c3418db30a58d1d31632b74a340637c2b/taskjuggler_<GITHUB_NAMESPACE>0rburn0r.tjp\",\"size\":2244}},\"public\":false,\"created_at\":\"2015-01-07T16:53:14Z\",\"updated_at\":\"2015-08-29T14:13:01Z\",\"description\":\"TaskJuggler example\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/281502e4ae6fce01db92/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/06c5b0da8d10c514166f\",\"forks_url\":\"https://api.github.com/gists/06c5b0da8d10c514166f/forks\",\"commits_url\":\"https://api.github.com/gists/06c5b0da8d10c514166f/commits\",\"id\":\"06c5b0da8d10c514166f\",\"git_pull_url\":\"https://gist.github.com/06c5b0da8d10c514166f.git\",\"git_push_url\":\"https://gist.github.com/06c5b0da8d10c514166f.git\",\"html_url\":\"https://gist.github.com/06c5b0da8d10c514166f\",\"files\":{\"gistfile1.rb\":{\"filename\":\"gistfile1.rb\",\"type\":\"application/x-ruby\",\"language\":\"Ruby\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/06c5b0da8d10c514166f/raw/671cfbb180ff8259adfb4f2032a91f331bb7eaa7/gistfile1.rb\",\"size\":1547}},\"public\":false,\"created_at\":\"2015-01-05T11:06:10Z\",\"updated_at\":\"2015-08-29T14:12:50Z\",\"description\":\"redmine to taskjuggler recursive func\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/06c5b0da8d10c514166f/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/603ccdd0f504c63cd0df\",\"forks_url\":\"https://api.github.com/gists/603ccdd0f504c63cd0df/forks\",\"commits_url\":\"https://api.github.com/gists/603ccdd0f504c63cd0df/commits\",\"id\":\"603ccdd0f504c63cd0df\",\"git_pull_url\":\"https://gist.github.com/603ccdd0f504c63cd0df.git\",\"git_push_url\":\"https://gist.github.com/603ccdd0f504c63cd0df.git\",\"html_url\":\"https://gist.github.com/603ccdd0f504c63cd0df\",\"files\":{\"simple-example-login-principals.py\":{\"filename\":\"simple-example-login-principals.py\",\"type\":\"application/x-python\",\"language\":\"Python\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/603ccdd0f504c63cd0df/raw/a29241fa708806eaa5177b13f9aba44018554236/simple-example-login-principals.py\",\"size\":3479}},\"public\":true,\"created_at\":\"2014-10-03T16:24:44Z\",\"updated_at\":\"2015-08-29T14:07:13Z\",\"description\":\"Simple example of Flask/Presst with Login and Principals (not working!)\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/603ccdd0f504c63cd0df/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/2482962b153ebd5cfa6b\",\"forks_url\":\"https://api.github.com/gists/2482962b153ebd5cfa6b/forks\",\"commits_url\":\"https://api.github.com/gists/2482962b153ebd5cfa6b/commits\",\"id\":\"2482962b153ebd5cfa6b\",\"git_pull_url\":\"https://gist.github.com/2482962b153ebd5cfa6b.git\",\"git_push_url\":\"https://gist.github.com/2482962b153ebd5cfa6b.git\",\"html_url\":\"https://gist.github.com/2482962b153ebd5cfa6b\",\"files\":{\"gistfile1.txt\":{\"filename\":\"gistfile1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/2482962b153ebd5cfa6b/raw/97fbb8096ed6c275cf1c40ae05cc6f048506e448/gistfile1.txt\",\"size\":52625}},\"public\":false,\"created_at\":\"2014-06-27T12:03:19Z\",\"updated_at\":\"2015-08-29T14:03:08Z\",\"description\":\"radial colour picker crash\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/2482962b153ebd5cfa6b/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/fc46896f3e604269ff93\",\"forks_url\":\"https://api.github.com/gists/fc46896f3e604269ff93/forks\",\"commits_url\":\"https://api.github.com/gists/fc46896f3e604269ff93/commits\",\"id\":\"fc46896f3e604269ff93\",\"git_pull_url\":\"https://gist.github.com/fc46896f3e604269ff93.git\",\"git_push_url\":\"https://gist.github.com/fc46896f3e604269ff93.git\",\"html_url\":\"https://gist.github.com/fc46896f3e604269ff93\",\"files\":{\"platform_level.gcode\":{\"filename\":\"platform_level.gcode\",\"type\":\"text/plain\",\"language\":\"G-code\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/fc46896f3e604269ff93/raw/ce29305d77b864376db6383f416f22ff08a6506e/platform_level.gcode\",\"size\":320}},\"public\":false,\"created_at\":\"2014-06-06T15:23:41Z\",\"updated_at\":\"2015-08-29T14:02:18Z\",\"description\":\"Platform levelling GCode file\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/fc46896f3e604269ff93/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/3b18193d6bea07bac37c\",\"forks_url\":\"https://api.github.com/gists/3b18193d6bea07bac37c/forks\",\"commits_url\":\"https://api.github.com/gists/3b18193d6bea07bac37c/commits\",\"id\":\"3b18193d6bea07bac37c\",\"git_pull_url\":\"https://gist.github.com/3b18193d6bea07bac37c.git\",\"git_push_url\":\"https://gist.github.com/3b18193d6bea07bac37c.git\",\"html_url\":\"https://gist.github.com/3b18193d6bea07bac37c\",\"files\":{\"pluzz.py\":{\"filename\":\"pluzz.py\",\"type\":\"application/x-python\",\"language\":\"Python\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/3b18193d6bea07bac37c/raw/1acbf72161c5e25d14ecb93a01fb4830c1602d98/pluzz.py\",\"size\":9422}},\"public\":true,\"created_at\":\"2014-05-09T15:03:47Z\",\"updated_at\":\"2015-08-29T14:01:13Z\",\"description\":\"Code to download movies from pluzz\",\"comments\":1,\"user\":null,\"comments_url\":\"https://api.github.com/gists/3b18193d6bea07bac37c/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/c01613d0453df275622a\",\"forks_url\":\"https://api.github.com/gists/c01613d0453df275622a/forks\",\"commits_url\":\"https://api.github.com/gists/c01613d0453df275622a/commits\",\"id\":\"c01613d0453df275622a\",\"git_pull_url\":\"https://gist.github.com/c01613d0453df275622a.git\",\"git_push_url\":\"https://gist.github.com/c01613d0453df275622a.git\",\"html_url\":\"https://gist.github.com/c01613d0453df275622a\",\"files\":{\"gistfile1.txt\":{\"filename\":\"gistfile1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/c01613d0453df275622a/raw/4c59ef4f610dc055f5973e41f5f6d89da8373db8/gistfile1.txt\",\"size\":4679}},\"public\":false,\"created_at\":\"2014-04-21T13:28:51Z\",\"updated_at\":\"2015-08-29T14:00:16Z\",\"description\":\"\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/c01613d0453df275622a/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/10118958\",\"forks_url\":\"https://api.github.com/gists/10118958/forks\",\"commits_url\":\"https://api.github.com/gists/10118958/commits\",\"id\":\"10118958\",\"git_pull_url\":\"https://gist.github.com/10118958.git\",\"git_push_url\":\"https://gist.github.com/10118958.git\",\"html_url\":\"https://gist.github.com/10118958\",\"files\":{\"i2c_scanner.c\":{\"filename\":\"i2c_scanner.c\",\"type\":\"text/plain\",\"language\":\"C\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/10118958/raw/bbc8ec3611c82adb71f55c524cda9a92529b9563/i2c_scanner.c\",\"size\":2542}},\"public\":true,\"created_at\":\"2014-04-08T12:48:36Z\",\"updated_at\":\"2015-08-29T13:58:21Z\",\"description\":\"I2C scanner code for SL030\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/10118958/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/5b79437ddd3f49491ce3\",\"forks_url\":\"https://api.github.com/gists/5b79437ddd3f49491ce3/forks\",\"commits_url\":\"https://api.github.com/gists/5b79437ddd3f49491ce3/commits\",\"id\":\"5b79437ddd3f49491ce3\",\"git_pull_url\":\"https://gist.github.com/5b79437ddd3f49491ce3.git\",\"git_push_url\":\"https://gist.github.com/5b79437ddd3f49491ce3.git\",\"html_url\":\"https://gist.github.com/5b79437ddd3f49491ce3\",\"files\":{\"AvrSerial.h\":{\"filename\":\"AvrSerial.h\",\"type\":\"text/plain\",\"language\":\"C++\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/5b79437ddd3f49491ce3/raw/0f1e24ff4caae02afa046e48cdddc569268aa741/AvrSerial.h\",\"size\":11200}},\"public\":false,\"created_at\":\"2014-03-04T19:07:24Z\",\"updated_at\":\"2015-08-29T13:57:00Z\",\"description\":\"\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/5b79437ddd3f49491ce3/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/5730750\",\"forks_url\":\"https://api.github.com/gists/5730750/forks\",\"commits_url\":\"https://api.github.com/gists/5730750/commits\",\"id\":\"5730750\",\"git_pull_url\":\"https://gist.github.com/5730750.git\",\"git_push_url\":\"https://gist.github.com/5730750.git\",\"html_url\":\"https://gist.github.com/5730750\",\"files\":{\"stackoverflow_inbox.py\":{\"filename\":\"stackoverflow_inbox.py\",\"type\":\"application/x-python\",\"language\":\"Python\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/5730750/raw/172e9a35c92ed087c171f68aee46a13a23e7cc45/stackoverflow_inbox.py\",\"size\":3217}},\"public\":true,\"created_at\":\"2013-06-07T17:03:08Z\",\"updated_at\":\"2015-12-18T05:09:32Z\",\"description\":\"An enhanced implementation of authenticating to stackoverflow using python.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/5730750/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/4308707\",\"forks_url\":\"https://api.github.com/gists/4308707/forks\",\"commits_url\":\"https://api.github.com/gists/4308707/commits\",\"id\":\"4308707\",\"git_pull_url\":\"https://gist.github.com/4308707.git\",\"git_push_url\":\"https://gist.github.com/4308707.git\",\"html_url\":\"https://gist.github.com/4308707\",\"files\":{\"strigi_osx10.6.8_homebrew.patch\":{\"filename\":\"strigi_osx10.6.8_homebrew.patch\",\"type\":\"text/plain\",\"language\":\"Diff\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/4308707/raw/3c891fff95bb59359a45593c104919fcf702beaf/strigi_osx10.6.8_homebrew.patch\",\"size\":14775}},\"public\":true,\"created_at\":\"2012-12-16T15:46:38Z\",\"updated_at\":\"2015-12-09T18:18:36Z\",\"description\":\"Patch to be applied for homebrew's strigi.rb Formula.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/4308707/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/4170462\",\"forks_url\":\"https://api.github.com/gists/4170462/forks\",\"commits_url\":\"https://api.github.com/gists/4170462/commits\",\"id\":\"4170462\",\"git_pull_url\":\"https://gist.github.com/4170462.git\",\"git_push_url\":\"https://gist.github.com/4170462.git\",\"html_url\":\"https://gist.github.com/4170462\",\"files\":{\"freevpn0.029__platform__io.patch\":{\"filename\":\"freevpn0.029__platform__io.patch\",\"type\":\"text/plain\",\"language\":\"Diff\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/4170462/raw/6460aa7cd015cc2a5f4128c5b1952b912073f5cd/freevpn0.029__platform__io.patch\",\"size\":488}},\"public\":true,\"created_at\":\"2012-11-29T17:11:37Z\",\"updated_at\":\"2015-10-13T08:48:11Z\",\"description\":\"Patch for strnlen support in freevpn (for OSX 10.6)\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/4170462/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/3666086\",\"forks_url\":\"https://api.github.com/gists/3666086/forks\",\"commits_url\":\"https://api.github.com/gists/3666086/commits\",\"id\":\"3666086\",\"git_pull_url\":\"https://gist.github.com/3666086.git\",\"git_push_url\":\"https://gist.github.com/3666086.git\",\"html_url\":\"https://gist.github.com/3666086\",\"files\":{\"0001-added-quotes-to-multiline-strings.patch\":{\"filename\":\"0001-added-quotes-to-multiline-strings.patch\",\"type\":\"text/plain\",\"language\":\"Diff\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/3666086/raw/57d77f8c0bd541d4f66bad08fbdf592b433834b5/0001-added-quotes-to-multiline-strings.patch\",\"size\":2657}},\"public\":true,\"created_at\":\"2012-09-07T13:01:29Z\",\"updated_at\":\"2015-10-10T08:58:01Z\",\"description\":\"z.sh patch for multiline quotes\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/3666086/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false},{\"url\":\"https://api.github.com/gists/2788003\",\"forks_url\":\"https://api.github.com/gists/2788003/forks\",\"commits_url\":\"https://api.github.com/gists/2788003/commits\",\"id\":\"2788003\",\"git_pull_url\":\"https://gist.github.com/2788003.git\",\"git_push_url\":\"https://gist.github.com/2788003.git\",\"html_url\":\"https://gist.github.com/2788003\",\"files\":{\"tornado_event_source_client.py\":{\"filename\":\"tornado_event_source_client.py\",\"type\":\"application/x-python\",\"language\":\"Python\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/2788003/raw/2037b1efb89ff21e5c8eac996c29881cefe7bf29/tornado_event_source_client.py\",\"size\":3391},\"tornado_event_source_lib.py\":{\"filename\":\"tornado_event_source_lib.py\",\"type\":\"application/x-python\",\"language\":\"Python\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/2788003/raw/1adfbdda47a1043ba86a69b6e6fcefeca29bb152/tornado_event_source_lib.py\",\"size\":8806}},\"public\":true,\"created_at\":\"2012-05-25T13:01:32Z\",\"updated_at\":\"2015-10-05T09:38:05Z\",\"description\":\"A Tornado-based library that enables Event Source support !\",\"comments\":1,\"user\":null,\"comments_url\":\"https://api.github.com/gists/2788003/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"truncated\":false}]" }, "headers": { "Access-Control-Allow-Origin": "*", diff --git a/tests/integration/cassettes/test_github_test_21_gist_create_gist_file.json b/tests/integration/cassettes/test_github_test_21_gist_create_gist_file.json index a61e34e..aaefecb 100644 --- a/tests/integration/cassettes/test_github_test_21_gist_create_gist_file.json +++ b/tests/integration/cassettes/test_github_test_21_gist_create_gist_file.json @@ -62,7 +62,7 @@ "request": { "body": { "encoding": "utf-8", - "string": "{\"public\": true, \"files\": {\"random-fortune-1.txt\": {\"content\": \"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}}, \"description\": \"this is a test.\"}" + "string": "{\"public\": true, \"files\": {\"random-fortune-1.txt\": {\"content\": \"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}}, \"description\": \"this is a <GITHUB_NAMESPACE>.\"}" }, "headers": { "Accept": "application/vnd.github.v3.full+json", @@ -80,7 +80,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"url\":\"https://api.github.com/gists/38e4e3ef0c34be6e0ffe3a67d39ecaa7\",\"forks_url\":\"https://api.github.com/gists/38e4e3ef0c34be6e0ffe3a67d39ecaa7/forks\",\"commits_url\":\"https://api.github.com/gists/38e4e3ef0c34be6e0ffe3a67d39ecaa7/commits\",\"id\":\"38e4e3ef0c34be6e0ffe3a67d39ecaa7\",\"git_pull_url\":\"https://gist.github.com/38e4e3ef0c34be6e0ffe3a67d39ecaa7.git\",\"git_push_url\":\"https://gist.github.com/38e4e3ef0c34be6e0ffe3a67d39ecaa7.git\",\"html_url\":\"https://gist.github.com/38e4e3ef0c34be6e0ffe3a67d39ecaa7\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/38e4e3ef0c34be6e0ffe3a67d39ecaa7/raw/1d4c746630a25f87cd02492a7ec8c5b210c1ba56/random-fortune-1.txt\",\"size\":97,\"truncated\":false,\"content\":\"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}},\"public\":true,\"created_at\":\"2016-05-21T16:23:26Z\",\"updated_at\":\"2016-05-21T16:23:26Z\",\"description\":\"this is a test.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/38e4e3ef0c34be6e0ffe3a67d39ecaa7/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"874d5ae845ea751d66f4885506df3c3e66c79061\",\"committed_at\":\"2016-05-21T16:23:26Z\",\"change_status\":{\"total\":2,\"additions\":2,\"deletions\":0},\"url\":\"https://api.github.com/gists/38e4e3ef0c34be6e0ffe3a67d39ecaa7/874d5ae845ea751d66f4885506df3c3e66c79061\"}],\"truncated\":false}" + "string": "{\"url\":\"https://api.github.com/gists/38e4e3ef0c34be6e0ffe3a67d39ecaa7\",\"forks_url\":\"https://api.github.com/gists/38e4e3ef0c34be6e0ffe3a67d39ecaa7/forks\",\"commits_url\":\"https://api.github.com/gists/38e4e3ef0c34be6e0ffe3a67d39ecaa7/commits\",\"id\":\"38e4e3ef0c34be6e0ffe3a67d39ecaa7\",\"git_pull_url\":\"https://gist.github.com/38e4e3ef0c34be6e0ffe3a67d39ecaa7.git\",\"git_push_url\":\"https://gist.github.com/38e4e3ef0c34be6e0ffe3a67d39ecaa7.git\",\"html_url\":\"https://gist.github.com/38e4e3ef0c34be6e0ffe3a67d39ecaa7\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/38e4e3ef0c34be6e0ffe3a67d39ecaa7/raw/1d4c746630a25f87cd02492a7ec8c5b210c1ba56/random-fortune-1.txt\",\"size\":97,\"truncated\":false,\"content\":\"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}},\"public\":true,\"created_at\":\"2016-05-21T16:23:26Z\",\"updated_at\":\"2016-05-21T16:23:26Z\",\"description\":\"this is a <GITHUB_NAMESPACE>.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/38e4e3ef0c34be6e0ffe3a67d39ecaa7/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"874d5ae845ea751d66f4885506df3c3e66c79061\",\"committed_at\":\"2016-05-21T16:23:26Z\",\"change_status\":{\"total\":2,\"additions\":2,\"deletions\":0},\"url\":\"https://api.github.com/gists/38e4e3ef0c34be6e0ffe3a67d39ecaa7/874d5ae845ea751d66f4885506df3c3e66c79061\"}],\"truncated\":false}" }, "headers": { "Access-Control-Allow-Origin": "*", diff --git a/tests/integration/cassettes/test_github_test_22_gist_create_gist_file_list.json b/tests/integration/cassettes/test_github_test_22_gist_create_gist_file_list.json index 4a42d41..cebe194 100644 --- a/tests/integration/cassettes/test_github_test_22_gist_create_gist_file_list.json +++ b/tests/integration/cassettes/test_github_test_22_gist_create_gist_file_list.json @@ -62,7 +62,7 @@ "request": { "body": { "encoding": "utf-8", - "string": "{\"description\": \"this is a test.\", \"files\": {\"random-fortune-1.txt\": {\"content\": \"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}, \"random-fortune-2.txt\": {\"content\": \"Spectacularism:\\n\\tA fascination with extreme situations.\\n\\t\\t-- Douglas Coupland, \\\"Generation X: Tales for an Accelerated\\n\\t\\t Culture\\\"\\n\"}, \"random-fortune-4.txt\": {\"content\": \"It's hard to tune heavily tuned code. :-)\\n\\t\\t-- Larry Wall in <199801141725.JAA07555@wall.org>\\n\"}, \"random-fortune-3.txt\": {\"content\": \"You may be right, I may be crazy,\\nBut it just may be a lunatic you're looking for!\\n\\t\\t-- Billy Joel\\n\"}}, \"public\": true}" + "string": "{\"description\": \"this is a <GITHUB_NAMESPACE>.\", \"files\": {\"random-fortune-1.txt\": {\"content\": \"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}, \"random-fortune-2.txt\": {\"content\": \"Spectacularism:\\n\\tA fascination with extreme situations.\\n\\t\\t-- Douglas Coupland, \\\"Generation X: Tales for an Accelerated\\n\\t\\t Culture\\\"\\n\"}, \"random-fortune-4.txt\": {\"content\": \"It's hard to tune heavily tuned code. :-)\\n\\t\\t-- Larry Wall in <199801141725.JAA07555@wall.org>\\n\"}, \"random-fortune-3.txt\": {\"content\": \"You may be right, I may be crazy,\\nBut it just may be a lunatic you're looking for!\\n\\t\\t-- Billy Joel\\n\"}}, \"public\": true}" }, "headers": { "Accept": "application/vnd.github.v3.full+json", @@ -80,7 +80,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"url\":\"https://api.github.com/gists/79993a1637396f42dccf495200531c0c\",\"forks_url\":\"https://api.github.com/gists/79993a1637396f42dccf495200531c0c/forks\",\"commits_url\":\"https://api.github.com/gists/79993a1637396f42dccf495200531c0c/commits\",\"id\":\"79993a1637396f42dccf495200531c0c\",\"git_pull_url\":\"https://gist.github.com/79993a1637396f42dccf495200531c0c.git\",\"git_push_url\":\"https://gist.github.com/79993a1637396f42dccf495200531c0c.git\",\"html_url\":\"https://gist.github.com/79993a1637396f42dccf495200531c0c\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/79993a1637396f42dccf495200531c0c/raw/1d4c746630a25f87cd02492a7ec8c5b210c1ba56/random-fortune-1.txt\",\"size\":97,\"truncated\":false,\"content\":\"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"},\"random-fortune-2.txt\":{\"filename\":\"random-fortune-2.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/79993a1637396f42dccf495200531c0c/raw/cf25024b6191ee66fb06c34209686f72d93427cd/random-fortune-2.txt\",\"size\":133,\"truncated\":false,\"content\":\"Spectacularism:\\n\\tA fascination with extreme situations.\\n\\t\\t-- Douglas Coupland, \\\"Generation X: Tales for an Accelerated\\n\\t\\t Culture\\\"\\n\"},\"random-fortune-3.txt\":{\"filename\":\"random-fortune-3.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/79993a1637396f42dccf495200531c0c/raw/9c4c0668b1dc6a61807493fbfcc8967a3f88cc6f/random-fortune-3.txt\",\"size\":99,\"truncated\":false,\"content\":\"You may be right, I may be crazy,\\nBut it just may be a lunatic you're looking for!\\n\\t\\t-- Billy Joel\\n\"},\"random-fortune-4.txt\":{\"filename\":\"random-fortune-4.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/79993a1637396f42dccf495200531c0c/raw/e8c73af50ab71d04508c6782a681bbc372eb983a/random-fortune-4.txt\",\"size\":95,\"truncated\":false,\"content\":\"It's hard to tune heavily tuned code. :-)\\n\\t\\t-- Larry Wall in <199801141725.JAA07555@wall.org>\\n\"}},\"public\":true,\"created_at\":\"2016-05-21T17:27:16Z\",\"updated_at\":\"2016-05-21T17:27:16Z\",\"description\":\"this is a test.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/79993a1637396f42dccf495200531c0c/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"b5f64fce55fbc49d22ba1bfecccb6c7d9d19d5d1\",\"committed_at\":\"2016-05-21T17:27:16Z\",\"change_status\":{\"total\":11,\"additions\":11,\"deletions\":0},\"url\":\"https://api.github.com/gists/79993a1637396f42dccf495200531c0c/b5f64fce55fbc49d22ba1bfecccb6c7d9d19d5d1\"}],\"truncated\":false}" + "string": "{\"url\":\"https://api.github.com/gists/79993a1637396f42dccf495200531c0c\",\"forks_url\":\"https://api.github.com/gists/79993a1637396f42dccf495200531c0c/forks\",\"commits_url\":\"https://api.github.com/gists/79993a1637396f42dccf495200531c0c/commits\",\"id\":\"79993a1637396f42dccf495200531c0c\",\"git_pull_url\":\"https://gist.github.com/79993a1637396f42dccf495200531c0c.git\",\"git_push_url\":\"https://gist.github.com/79993a1637396f42dccf495200531c0c.git\",\"html_url\":\"https://gist.github.com/79993a1637396f42dccf495200531c0c\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/79993a1637396f42dccf495200531c0c/raw/1d4c746630a25f87cd02492a7ec8c5b210c1ba56/random-fortune-1.txt\",\"size\":97,\"truncated\":false,\"content\":\"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"},\"random-fortune-2.txt\":{\"filename\":\"random-fortune-2.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/79993a1637396f42dccf495200531c0c/raw/cf25024b6191ee66fb06c34209686f72d93427cd/random-fortune-2.txt\",\"size\":133,\"truncated\":false,\"content\":\"Spectacularism:\\n\\tA fascination with extreme situations.\\n\\t\\t-- Douglas Coupland, \\\"Generation X: Tales for an Accelerated\\n\\t\\t Culture\\\"\\n\"},\"random-fortune-3.txt\":{\"filename\":\"random-fortune-3.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/79993a1637396f42dccf495200531c0c/raw/9c4c0668b1dc6a61807493fbfcc8967a3f88cc6f/random-fortune-3.txt\",\"size\":99,\"truncated\":false,\"content\":\"You may be right, I may be crazy,\\nBut it just may be a lunatic you're looking for!\\n\\t\\t-- Billy Joel\\n\"},\"random-fortune-4.txt\":{\"filename\":\"random-fortune-4.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/79993a1637396f42dccf495200531c0c/raw/e8c73af50ab71d04508c6782a681bbc372eb983a/random-fortune-4.txt\",\"size\":95,\"truncated\":false,\"content\":\"It's hard to tune heavily tuned code. :-)\\n\\t\\t-- Larry Wall in <199801141725.JAA07555@wall.org>\\n\"}},\"public\":true,\"created_at\":\"2016-05-21T17:27:16Z\",\"updated_at\":\"2016-05-21T17:27:16Z\",\"description\":\"this is a <GITHUB_NAMESPACE>.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/79993a1637396f42dccf495200531c0c/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"b5f64fce55fbc49d22ba1bfecccb6c7d9d19d5d1\",\"committed_at\":\"2016-05-21T17:27:16Z\",\"change_status\":{\"total\":11,\"additions\":11,\"deletions\":0},\"url\":\"https://api.github.com/gists/79993a1637396f42dccf495200531c0c/b5f64fce55fbc49d22ba1bfecccb6c7d9d19d5d1\"}],\"truncated\":false}" }, "headers": { "Access-Control-Allow-Origin": "*", diff --git a/tests/integration/cassettes/test_github_test_23_gist_create_gist_dir.json b/tests/integration/cassettes/test_github_test_23_gist_create_gist_dir.json index d34fa64..697d06f 100644 --- a/tests/integration/cassettes/test_github_test_23_gist_create_gist_dir.json +++ b/tests/integration/cassettes/test_github_test_23_gist_create_gist_dir.json @@ -62,7 +62,7 @@ "request": { "body": { "encoding": "utf-8", - "string": "{\"description\": \"this is a test.\", \"public\": true, \"files\": {\"random-fortune-4.txt\": {\"content\": \"\\\"The lawgiver, of all beings, most owes the law allegiance.\\n He of all men should behave as though the law compelled him.\\n But it is the universal weakness of mankind that what we are\\n given to administer we presently imagine we own.\\\"\\n\\t\\t-- H. G. Wells\\n\"}, \"random-fortune-3.txt\": {\"content\": \"All wars are civil wars, because all men are brothers ... Each one owes\\ninfinitely more to the human race than to the particular country in\\nwhich he was born.\\n\\t\\t-- Francois Fenelon\\n\"}, \"random-fortune-2.txt\": {\"content\": \"I'm having BEAUTIFUL THOUGHTS about the INSIPID WIVES of smug and\\nwealthy CORPORATE LAWYERS ...\\n\"}, \"random-fortune-1.txt\": {\"content\": \"No one can guarantee the actions of another.\\n\\t\\t-- Spock, \\\"Day of the Dove\\\", stardate unknown\\n\"}}}" + "string": "{\"description\": \"this is a <GITHUB_NAMESPACE>.\", \"public\": true, \"files\": {\"random-fortune-4.txt\": {\"content\": \"\\\"The lawgiver, of all beings, most owes the law allegiance.\\n He of all men should behave as though the law compelled him.\\n But it is the universal weakness of mankind that what we are\\n given to administer we presently imagine we own.\\\"\\n\\t\\t-- H. G. Wells\\n\"}, \"random-fortune-3.txt\": {\"content\": \"All wars are civil wars, because all men are brothers ... Each one owes\\ninfinitely more to the human race than to the particular country in\\nwhich he was born.\\n\\t\\t-- Francois Fenelon\\n\"}, \"random-fortune-2.txt\": {\"content\": \"I'm having BEAUTIFUL THOUGHTS about the INSIPID WIVES of smug and\\nwealthy CORPORATE LAWYERS ...\\n\"}, \"random-fortune-1.txt\": {\"content\": \"No one can guarantee the actions of another.\\n\\t\\t-- Spock, \\\"Day of the Dove\\\", stardate unknown\\n\"}}}" }, "headers": { "Accept": "application/vnd.github.v3.full+json", @@ -80,7 +80,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"url\":\"https://api.github.com/gists/5af6cc23fbe2fe99652ec0104bfee253\",\"forks_url\":\"https://api.github.com/gists/5af6cc23fbe2fe99652ec0104bfee253/forks\",\"commits_url\":\"https://api.github.com/gists/5af6cc23fbe2fe99652ec0104bfee253/commits\",\"id\":\"5af6cc23fbe2fe99652ec0104bfee253\",\"git_pull_url\":\"https://gist.github.com/5af6cc23fbe2fe99652ec0104bfee253.git\",\"git_push_url\":\"https://gist.github.com/5af6cc23fbe2fe99652ec0104bfee253.git\",\"html_url\":\"https://gist.github.com/5af6cc23fbe2fe99652ec0104bfee253\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/5af6cc23fbe2fe99652ec0104bfee253/raw/c899c15de8923e907d624d2102da40588fa0df24/random-fortune-1.txt\",\"size\":93,\"truncated\":false,\"content\":\"No one can guarantee the actions of another.\\n\\t\\t-- Spock, \\\"Day of the Dove\\\", stardate unknown\\n\"},\"random-fortune-2.txt\":{\"filename\":\"random-fortune-2.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/5af6cc23fbe2fe99652ec0104bfee253/raw/adcb0ba26e1136cd22323e325b864d284f42fd0b/random-fortune-2.txt\",\"size\":96,\"truncated\":false,\"content\":\"I'm having BEAUTIFUL THOUGHTS about the INSIPID WIVES of smug and\\nwealthy CORPORATE LAWYERS ...\\n\"},\"random-fortune-3.txt\":{\"filename\":\"random-fortune-3.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/5af6cc23fbe2fe99652ec0104bfee253/raw/9c2ba8a4620af65572a67fe2aff727b4fa4f4fe8/random-fortune-3.txt\",\"size\":181,\"truncated\":false,\"content\":\"All wars are civil wars, because all men are brothers ... Each one owes\\ninfinitely more to the human race than to the particular country in\\nwhich he was born.\\n\\t\\t-- Francois Fenelon\\n\"},\"random-fortune-4.txt\":{\"filename\":\"random-fortune-4.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/5af6cc23fbe2fe99652ec0104bfee253/raw/306433d5c9b92475cba3a14b5bcb7600696583ff/random-fortune-4.txt\",\"size\":252,\"truncated\":false,\"content\":\"\\\"The lawgiver, of all beings, most owes the law allegiance.\\n He of all men should behave as though the law compelled him.\\n But it is the universal weakness of mankind that what we are\\n given to administer we presently imagine we own.\\\"\\n\\t\\t-- H. G. Wells\\n\"}},\"public\":true,\"created_at\":\"2016-05-21T17:29:18Z\",\"updated_at\":\"2016-05-21T17:29:18Z\",\"description\":\"this is a test.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/5af6cc23fbe2fe99652ec0104bfee253/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"02a0b77fd57458bd01087e94996d84b6c06f9362\",\"committed_at\":\"2016-05-21T17:29:18Z\",\"change_status\":{\"total\":13,\"additions\":13,\"deletions\":0},\"url\":\"https://api.github.com/gists/5af6cc23fbe2fe99652ec0104bfee253/02a0b77fd57458bd01087e94996d84b6c06f9362\"}],\"truncated\":false}" + "string": "{\"url\":\"https://api.github.com/gists/5af6cc23fbe2fe99652ec0104bfee253\",\"forks_url\":\"https://api.github.com/gists/5af6cc23fbe2fe99652ec0104bfee253/forks\",\"commits_url\":\"https://api.github.com/gists/5af6cc23fbe2fe99652ec0104bfee253/commits\",\"id\":\"5af6cc23fbe2fe99652ec0104bfee253\",\"git_pull_url\":\"https://gist.github.com/5af6cc23fbe2fe99652ec0104bfee253.git\",\"git_push_url\":\"https://gist.github.com/5af6cc23fbe2fe99652ec0104bfee253.git\",\"html_url\":\"https://gist.github.com/5af6cc23fbe2fe99652ec0104bfee253\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/5af6cc23fbe2fe99652ec0104bfee253/raw/c899c15de8923e907d624d2102da40588fa0df24/random-fortune-1.txt\",\"size\":93,\"truncated\":false,\"content\":\"No one can guarantee the actions of another.\\n\\t\\t-- Spock, \\\"Day of the Dove\\\", stardate unknown\\n\"},\"random-fortune-2.txt\":{\"filename\":\"random-fortune-2.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/5af6cc23fbe2fe99652ec0104bfee253/raw/adcb0ba26e1136cd22323e325b864d284f42fd0b/random-fortune-2.txt\",\"size\":96,\"truncated\":false,\"content\":\"I'm having BEAUTIFUL THOUGHTS about the INSIPID WIVES of smug and\\nwealthy CORPORATE LAWYERS ...\\n\"},\"random-fortune-3.txt\":{\"filename\":\"random-fortune-3.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/5af6cc23fbe2fe99652ec0104bfee253/raw/9c2ba8a4620af65572a67fe2aff727b4fa4f4fe8/random-fortune-3.txt\",\"size\":181,\"truncated\":false,\"content\":\"All wars are civil wars, because all men are brothers ... Each one owes\\ninfinitely more to the human race than to the particular country in\\nwhich he was born.\\n\\t\\t-- Francois Fenelon\\n\"},\"random-fortune-4.txt\":{\"filename\":\"random-fortune-4.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/5af6cc23fbe2fe99652ec0104bfee253/raw/306433d5c9b92475cba3a14b5bcb7600696583ff/random-fortune-4.txt\",\"size\":252,\"truncated\":false,\"content\":\"\\\"The lawgiver, of all beings, most owes the law allegiance.\\n He of all men should behave as though the law compelled him.\\n But it is the universal weakness of mankind that what we are\\n given to administer we presently imagine we own.\\\"\\n\\t\\t-- H. G. Wells\\n\"}},\"public\":true,\"created_at\":\"2016-05-21T17:29:18Z\",\"updated_at\":\"2016-05-21T17:29:18Z\",\"description\":\"this is a <GITHUB_NAMESPACE>.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/5af6cc23fbe2fe99652ec0104bfee253/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"02a0b77fd57458bd01087e94996d84b6c06f9362\",\"committed_at\":\"2016-05-21T17:29:18Z\",\"change_status\":{\"total\":13,\"additions\":13,\"deletions\":0},\"url\":\"https://api.github.com/gists/5af6cc23fbe2fe99652ec0104bfee253/02a0b77fd57458bd01087e94996d84b6c06f9362\"}],\"truncated\":false}" }, "headers": { "Access-Control-Allow-Origin": "*", diff --git a/tests/integration/cassettes/test_github_test_24_gist_create_gist_file.json b/tests/integration/cassettes/test_github_test_24_gist_create_gist_file.json index fc35786..6cf463a 100644 --- a/tests/integration/cassettes/test_github_test_24_gist_create_gist_file.json +++ b/tests/integration/cassettes/test_github_test_24_gist_create_gist_file.json @@ -62,7 +62,7 @@ "request": { "body": { "encoding": "utf-8", - "string": "{\"public\": false, \"description\": \"this is a secret test.\", \"files\": {\"random-fortune-1.txt\": {\"content\": \"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}}}" + "string": "{\"public\": false, \"description\": \"this is a secret <GITHUB_NAMESPACE>.\", \"files\": {\"random-fortune-1.txt\": {\"content\": \"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}}}" }, "headers": { "Accept": "application/vnd.github.v3.full+json", @@ -80,7 +80,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95\",\"forks_url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/forks\",\"commits_url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/commits\",\"id\":\"7dcc495dda5e684cba94940a01f60e95\",\"git_pull_url\":\"https://gist.github.com/7dcc495dda5e684cba94940a01f60e95.git\",\"git_push_url\":\"https://gist.github.com/7dcc495dda5e684cba94940a01f60e95.git\",\"html_url\":\"https://gist.github.com/7dcc495dda5e684cba94940a01f60e95\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/7dcc495dda5e684cba94940a01f60e95/raw/1d4c746630a25f87cd02492a7ec8c5b210c1ba56/random-fortune-1.txt\",\"size\":97,\"truncated\":false,\"content\":\"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}},\"public\":false,\"created_at\":\"2016-05-21T17:32:02Z\",\"updated_at\":\"2016-05-21T17:32:02Z\",\"description\":\"this is a secret test.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"046de2514c1c74bfba663d3db69e39a6d9699d7a\",\"committed_at\":\"2016-05-21T17:32:02Z\",\"change_status\":{\"total\":2,\"additions\":2,\"deletions\":0},\"url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/046de2514c1c74bfba663d3db69e39a6d9699d7a\"}],\"truncated\":false}" + "string": "{\"url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95\",\"forks_url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/forks\",\"commits_url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/commits\",\"id\":\"7dcc495dda5e684cba94940a01f60e95\",\"git_pull_url\":\"https://gist.github.com/7dcc495dda5e684cba94940a01f60e95.git\",\"git_push_url\":\"https://gist.github.com/7dcc495dda5e684cba94940a01f60e95.git\",\"html_url\":\"https://gist.github.com/7dcc495dda5e684cba94940a01f60e95\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/7dcc495dda5e684cba94940a01f60e95/raw/1d4c746630a25f87cd02492a7ec8c5b210c1ba56/random-fortune-1.txt\",\"size\":97,\"truncated\":false,\"content\":\"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}},\"public\":false,\"created_at\":\"2016-05-21T17:32:02Z\",\"updated_at\":\"2016-05-21T17:32:02Z\",\"description\":\"this is a secret <GITHUB_NAMESPACE>.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"046de2514c1c74bfba663d3db69e39a6d9699d7a\",\"committed_at\":\"2016-05-21T17:32:02Z\",\"change_status\":{\"total\":2,\"additions\":2,\"deletions\":0},\"url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/046de2514c1c74bfba663d3db69e39a6d9699d7a\"}],\"truncated\":false}" }, "headers": { "Access-Control-Allow-Origin": "*", diff --git a/tests/integration/cassettes/test_github_test_25_gist_create_gist_file_list.json b/tests/integration/cassettes/test_github_test_25_gist_create_gist_file_list.json index 1a48016..7998b2a 100644 --- a/tests/integration/cassettes/test_github_test_25_gist_create_gist_file_list.json +++ b/tests/integration/cassettes/test_github_test_25_gist_create_gist_file_list.json @@ -62,7 +62,7 @@ "request": { "body": { "encoding": "utf-8", - "string": "{\"files\": {\"random-fortune-4.txt\": {\"content\": \"It's hard to tune heavily tuned code. :-)\\n\\t\\t-- Larry Wall in <199801141725.JAA07555@wall.org>\\n\"}, \"random-fortune-3.txt\": {\"content\": \"You may be right, I may be crazy,\\nBut it just may be a lunatic you're looking for!\\n\\t\\t-- Billy Joel\\n\"}, \"random-fortune-1.txt\": {\"content\": \"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}, \"random-fortune-2.txt\": {\"content\": \"Spectacularism:\\n\\tA fascination with extreme situations.\\n\\t\\t-- Douglas Coupland, \\\"Generation X: Tales for an Accelerated\\n\\t\\t Culture\\\"\\n\"}}, \"description\": \"this is a secret test.\", \"public\": false}" + "string": "{\"files\": {\"random-fortune-4.txt\": {\"content\": \"It's hard to tune heavily tuned code. :-)\\n\\t\\t-- Larry Wall in <199801141725.JAA07555@wall.org>\\n\"}, \"random-fortune-3.txt\": {\"content\": \"You may be right, I may be crazy,\\nBut it just may be a lunatic you're looking for!\\n\\t\\t-- Billy Joel\\n\"}, \"random-fortune-1.txt\": {\"content\": \"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}, \"random-fortune-2.txt\": {\"content\": \"Spectacularism:\\n\\tA fascination with extreme situations.\\n\\t\\t-- Douglas Coupland, \\\"Generation X: Tales for an Accelerated\\n\\t\\t Culture\\\"\\n\"}}, \"description\": \"this is a secret <GITHUB_NAMESPACE>.\", \"public\": false}" }, "headers": { "Accept": "application/vnd.github.v3.full+json", @@ -80,7 +80,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"url\":\"https://api.github.com/gists/76a6968618dc897499457c6578095d98\",\"forks_url\":\"https://api.github.com/gists/76a6968618dc897499457c6578095d98/forks\",\"commits_url\":\"https://api.github.com/gists/76a6968618dc897499457c6578095d98/commits\",\"id\":\"76a6968618dc897499457c6578095d98\",\"git_pull_url\":\"https://gist.github.com/76a6968618dc897499457c6578095d98.git\",\"git_push_url\":\"https://gist.github.com/76a6968618dc897499457c6578095d98.git\",\"html_url\":\"https://gist.github.com/76a6968618dc897499457c6578095d98\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/76a6968618dc897499457c6578095d98/raw/1d4c746630a25f87cd02492a7ec8c5b210c1ba56/random-fortune-1.txt\",\"size\":97,\"truncated\":false,\"content\":\"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"},\"random-fortune-2.txt\":{\"filename\":\"random-fortune-2.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/76a6968618dc897499457c6578095d98/raw/cf25024b6191ee66fb06c34209686f72d93427cd/random-fortune-2.txt\",\"size\":133,\"truncated\":false,\"content\":\"Spectacularism:\\n\\tA fascination with extreme situations.\\n\\t\\t-- Douglas Coupland, \\\"Generation X: Tales for an Accelerated\\n\\t\\t Culture\\\"\\n\"},\"random-fortune-3.txt\":{\"filename\":\"random-fortune-3.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/76a6968618dc897499457c6578095d98/raw/9c4c0668b1dc6a61807493fbfcc8967a3f88cc6f/random-fortune-3.txt\",\"size\":99,\"truncated\":false,\"content\":\"You may be right, I may be crazy,\\nBut it just may be a lunatic you're looking for!\\n\\t\\t-- Billy Joel\\n\"},\"random-fortune-4.txt\":{\"filename\":\"random-fortune-4.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/76a6968618dc897499457c6578095d98/raw/e8c73af50ab71d04508c6782a681bbc372eb983a/random-fortune-4.txt\",\"size\":95,\"truncated\":false,\"content\":\"It's hard to tune heavily tuned code. :-)\\n\\t\\t-- Larry Wall in <199801141725.JAA07555@wall.org>\\n\"}},\"public\":false,\"created_at\":\"2016-05-21T17:32:07Z\",\"updated_at\":\"2016-05-21T17:32:07Z\",\"description\":\"this is a secret test.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/76a6968618dc897499457c6578095d98/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"bde0d40621152b350e8ad3274f8bcee70746bbd4\",\"committed_at\":\"2016-05-21T17:32:07Z\",\"change_status\":{\"total\":11,\"additions\":11,\"deletions\":0},\"url\":\"https://api.github.com/gists/76a6968618dc897499457c6578095d98/bde0d40621152b350e8ad3274f8bcee70746bbd4\"}],\"truncated\":false}" + "string": "{\"url\":\"https://api.github.com/gists/76a6968618dc897499457c6578095d98\",\"forks_url\":\"https://api.github.com/gists/76a6968618dc897499457c6578095d98/forks\",\"commits_url\":\"https://api.github.com/gists/76a6968618dc897499457c6578095d98/commits\",\"id\":\"76a6968618dc897499457c6578095d98\",\"git_pull_url\":\"https://gist.github.com/76a6968618dc897499457c6578095d98.git\",\"git_push_url\":\"https://gist.github.com/76a6968618dc897499457c6578095d98.git\",\"html_url\":\"https://gist.github.com/76a6968618dc897499457c6578095d98\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/76a6968618dc897499457c6578095d98/raw/1d4c746630a25f87cd02492a7ec8c5b210c1ba56/random-fortune-1.txt\",\"size\":97,\"truncated\":false,\"content\":\"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"},\"random-fortune-2.txt\":{\"filename\":\"random-fortune-2.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/76a6968618dc897499457c6578095d98/raw/cf25024b6191ee66fb06c34209686f72d93427cd/random-fortune-2.txt\",\"size\":133,\"truncated\":false,\"content\":\"Spectacularism:\\n\\tA fascination with extreme situations.\\n\\t\\t-- Douglas Coupland, \\\"Generation X: Tales for an Accelerated\\n\\t\\t Culture\\\"\\n\"},\"random-fortune-3.txt\":{\"filename\":\"random-fortune-3.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/76a6968618dc897499457c6578095d98/raw/9c4c0668b1dc6a61807493fbfcc8967a3f88cc6f/random-fortune-3.txt\",\"size\":99,\"truncated\":false,\"content\":\"You may be right, I may be crazy,\\nBut it just may be a lunatic you're looking for!\\n\\t\\t-- Billy Joel\\n\"},\"random-fortune-4.txt\":{\"filename\":\"random-fortune-4.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/76a6968618dc897499457c6578095d98/raw/e8c73af50ab71d04508c6782a681bbc372eb983a/random-fortune-4.txt\",\"size\":95,\"truncated\":false,\"content\":\"It's hard to tune heavily tuned code. :-)\\n\\t\\t-- Larry Wall in <199801141725.JAA07555@wall.org>\\n\"}},\"public\":false,\"created_at\":\"2016-05-21T17:32:07Z\",\"updated_at\":\"2016-05-21T17:32:07Z\",\"description\":\"this is a secret <GITHUB_NAMESPACE>.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/76a6968618dc897499457c6578095d98/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"bde0d40621152b350e8ad3274f8bcee70746bbd4\",\"committed_at\":\"2016-05-21T17:32:07Z\",\"change_status\":{\"total\":11,\"additions\":11,\"deletions\":0},\"url\":\"https://api.github.com/gists/76a6968618dc897499457c6578095d98/bde0d40621152b350e8ad3274f8bcee70746bbd4\"}],\"truncated\":false}" }, "headers": { "Access-Control-Allow-Origin": "*", diff --git a/tests/integration/cassettes/test_github_test_26_gist_create_gist_dir.json b/tests/integration/cassettes/test_github_test_26_gist_create_gist_dir.json index 6d38c89..0aed6d3 100644 --- a/tests/integration/cassettes/test_github_test_26_gist_create_gist_dir.json +++ b/tests/integration/cassettes/test_github_test_26_gist_create_gist_dir.json @@ -62,7 +62,7 @@ "request": { "body": { "encoding": "utf-8", - "string": "{\"public\": false, \"description\": \"this is a secret test.\", \"files\": {\"random-fortune-3.txt\": {\"content\": \"All wars are civil wars, because all men are brothers ... Each one owes\\ninfinitely more to the human race than to the particular country in\\nwhich he was born.\\n\\t\\t-- Francois Fenelon\\n\"}, \"random-fortune-1.txt\": {\"content\": \"No one can guarantee the actions of another.\\n\\t\\t-- Spock, \\\"Day of the Dove\\\", stardate unknown\\n\"}, \"random-fortune-2.txt\": {\"content\": \"I'm having BEAUTIFUL THOUGHTS about the INSIPID WIVES of smug and\\nwealthy CORPORATE LAWYERS ...\\n\"}, \"random-fortune-4.txt\": {\"content\": \"\\\"The lawgiver, of all beings, most owes the law allegiance.\\n He of all men should behave as though the law compelled him.\\n But it is the universal weakness of mankind that what we are\\n given to administer we presently imagine we own.\\\"\\n\\t\\t-- H. G. Wells\\n\"}}}" + "string": "{\"public\": false, \"description\": \"this is a secret <GITHUB_NAMESPACE>.\", \"files\": {\"random-fortune-3.txt\": {\"content\": \"All wars are civil wars, because all men are brothers ... Each one owes\\ninfinitely more to the human race than to the particular country in\\nwhich he was born.\\n\\t\\t-- Francois Fenelon\\n\"}, \"random-fortune-1.txt\": {\"content\": \"No one can guarantee the actions of another.\\n\\t\\t-- Spock, \\\"Day of the Dove\\\", stardate unknown\\n\"}, \"random-fortune-2.txt\": {\"content\": \"I'm having BEAUTIFUL THOUGHTS about the INSIPID WIVES of smug and\\nwealthy CORPORATE LAWYERS ...\\n\"}, \"random-fortune-4.txt\": {\"content\": \"\\\"The lawgiver, of all beings, most owes the law allegiance.\\n He of all men should behave as though the law compelled him.\\n But it is the universal weakness of mankind that what we are\\n given to administer we presently imagine we own.\\\"\\n\\t\\t-- H. G. Wells\\n\"}}}" }, "headers": { "Accept": "application/vnd.github.v3.full+json", @@ -80,7 +80,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"url\":\"https://api.github.com/gists/f99d6f70953a366cea782ec6fcc58585\",\"forks_url\":\"https://api.github.com/gists/f99d6f70953a366cea782ec6fcc58585/forks\",\"commits_url\":\"https://api.github.com/gists/f99d6f70953a366cea782ec6fcc58585/commits\",\"id\":\"f99d6f70953a366cea782ec6fcc58585\",\"git_pull_url\":\"https://gist.github.com/f99d6f70953a366cea782ec6fcc58585.git\",\"git_push_url\":\"https://gist.github.com/f99d6f70953a366cea782ec6fcc58585.git\",\"html_url\":\"https://gist.github.com/f99d6f70953a366cea782ec6fcc58585\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/f99d6f70953a366cea782ec6fcc58585/raw/c899c15de8923e907d624d2102da40588fa0df24/random-fortune-1.txt\",\"size\":93,\"truncated\":false,\"content\":\"No one can guarantee the actions of another.\\n\\t\\t-- Spock, \\\"Day of the Dove\\\", stardate unknown\\n\"},\"random-fortune-2.txt\":{\"filename\":\"random-fortune-2.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/f99d6f70953a366cea782ec6fcc58585/raw/adcb0ba26e1136cd22323e325b864d284f42fd0b/random-fortune-2.txt\",\"size\":96,\"truncated\":false,\"content\":\"I'm having BEAUTIFUL THOUGHTS about the INSIPID WIVES of smug and\\nwealthy CORPORATE LAWYERS ...\\n\"},\"random-fortune-3.txt\":{\"filename\":\"random-fortune-3.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/f99d6f70953a366cea782ec6fcc58585/raw/9c2ba8a4620af65572a67fe2aff727b4fa4f4fe8/random-fortune-3.txt\",\"size\":181,\"truncated\":false,\"content\":\"All wars are civil wars, because all men are brothers ... Each one owes\\ninfinitely more to the human race than to the particular country in\\nwhich he was born.\\n\\t\\t-- Francois Fenelon\\n\"},\"random-fortune-4.txt\":{\"filename\":\"random-fortune-4.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/f99d6f70953a366cea782ec6fcc58585/raw/306433d5c9b92475cba3a14b5bcb7600696583ff/random-fortune-4.txt\",\"size\":252,\"truncated\":false,\"content\":\"\\\"The lawgiver, of all beings, most owes the law allegiance.\\n He of all men should behave as though the law compelled him.\\n But it is the universal weakness of mankind that what we are\\n given to administer we presently imagine we own.\\\"\\n\\t\\t-- H. G. Wells\\n\"}},\"public\":false,\"created_at\":\"2016-05-21T17:32:12Z\",\"updated_at\":\"2016-05-21T17:32:12Z\",\"description\":\"this is a secret test.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/f99d6f70953a366cea782ec6fcc58585/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"34b8e94218f339b51eeef836763a901d77c8041d\",\"committed_at\":\"2016-05-21T17:32:12Z\",\"change_status\":{\"total\":13,\"additions\":13,\"deletions\":0},\"url\":\"https://api.github.com/gists/f99d6f70953a366cea782ec6fcc58585/34b8e94218f339b51eeef836763a901d77c8041d\"}],\"truncated\":false}" + "string": "{\"url\":\"https://api.github.com/gists/f99d6f70953a366cea782ec6fcc58585\",\"forks_url\":\"https://api.github.com/gists/f99d6f70953a366cea782ec6fcc58585/forks\",\"commits_url\":\"https://api.github.com/gists/f99d6f70953a366cea782ec6fcc58585/commits\",\"id\":\"f99d6f70953a366cea782ec6fcc58585\",\"git_pull_url\":\"https://gist.github.com/f99d6f70953a366cea782ec6fcc58585.git\",\"git_push_url\":\"https://gist.github.com/f99d6f70953a366cea782ec6fcc58585.git\",\"html_url\":\"https://gist.github.com/f99d6f70953a366cea782ec6fcc58585\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/f99d6f70953a366cea782ec6fcc58585/raw/c899c15de8923e907d624d2102da40588fa0df24/random-fortune-1.txt\",\"size\":93,\"truncated\":false,\"content\":\"No one can guarantee the actions of another.\\n\\t\\t-- Spock, \\\"Day of the Dove\\\", stardate unknown\\n\"},\"random-fortune-2.txt\":{\"filename\":\"random-fortune-2.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/f99d6f70953a366cea782ec6fcc58585/raw/adcb0ba26e1136cd22323e325b864d284f42fd0b/random-fortune-2.txt\",\"size\":96,\"truncated\":false,\"content\":\"I'm having BEAUTIFUL THOUGHTS about the INSIPID WIVES of smug and\\nwealthy CORPORATE LAWYERS ...\\n\"},\"random-fortune-3.txt\":{\"filename\":\"random-fortune-3.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/f99d6f70953a366cea782ec6fcc58585/raw/9c2ba8a4620af65572a67fe2aff727b4fa4f4fe8/random-fortune-3.txt\",\"size\":181,\"truncated\":false,\"content\":\"All wars are civil wars, because all men are brothers ... Each one owes\\ninfinitely more to the human race than to the particular country in\\nwhich he was born.\\n\\t\\t-- Francois Fenelon\\n\"},\"random-fortune-4.txt\":{\"filename\":\"random-fortune-4.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/f99d6f70953a366cea782ec6fcc58585/raw/306433d5c9b92475cba3a14b5bcb7600696583ff/random-fortune-4.txt\",\"size\":252,\"truncated\":false,\"content\":\"\\\"The lawgiver, of all beings, most owes the law allegiance.\\n He of all men should behave as though the law compelled him.\\n But it is the universal weakness of mankind that what we are\\n given to administer we presently imagine we own.\\\"\\n\\t\\t-- H. G. Wells\\n\"}},\"public\":false,\"created_at\":\"2016-05-21T17:32:12Z\",\"updated_at\":\"2016-05-21T17:32:12Z\",\"description\":\"this is a secret <GITHUB_NAMESPACE>.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/f99d6f70953a366cea782ec6fcc58585/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"34b8e94218f339b51eeef836763a901d77c8041d\",\"committed_at\":\"2016-05-21T17:32:12Z\",\"change_status\":{\"total\":13,\"additions\":13,\"deletions\":0},\"url\":\"https://api.github.com/gists/f99d6f70953a366cea782ec6fcc58585/34b8e94218f339b51eeef836763a901d77c8041d\"}],\"truncated\":false}" }, "headers": { "Access-Control-Allow-Origin": "*", diff --git a/tests/integration/cassettes/test_github_test_27_gist_delete.json b/tests/integration/cassettes/test_github_test_27_gist_delete.json index f0d9b20..c387a45 100644 --- a/tests/integration/cassettes/test_github_test_27_gist_delete.json +++ b/tests/integration/cassettes/test_github_test_27_gist_delete.json @@ -79,7 +79,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95\",\"forks_url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/forks\",\"commits_url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/commits\",\"id\":\"7dcc495dda5e684cba94940a01f60e95\",\"git_pull_url\":\"https://gist.github.com/7dcc495dda5e684cba94940a01f60e95.git\",\"git_push_url\":\"https://gist.github.com/7dcc495dda5e684cba94940a01f60e95.git\",\"html_url\":\"https://gist.github.com/7dcc495dda5e684cba94940a01f60e95\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/7dcc495dda5e684cba94940a01f60e95/raw/1d4c746630a25f87cd02492a7ec8c5b210c1ba56/random-fortune-1.txt\",\"size\":97,\"truncated\":false,\"content\":\"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}},\"public\":false,\"created_at\":\"2016-05-21T17:32:02Z\",\"updated_at\":\"2016-05-21T17:32:02Z\",\"description\":\"this is a secret test.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"046de2514c1c74bfba663d3db69e39a6d9699d7a\",\"committed_at\":\"2016-05-21T17:32:02Z\",\"change_status\":{\"total\":2,\"additions\":2,\"deletions\":0},\"url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/046de2514c1c74bfba663d3db69e39a6d9699d7a\"}],\"truncated\":false}" + "string": "{\"url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95\",\"forks_url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/forks\",\"commits_url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/commits\",\"id\":\"7dcc495dda5e684cba94940a01f60e95\",\"git_pull_url\":\"https://gist.github.com/7dcc495dda5e684cba94940a01f60e95.git\",\"git_push_url\":\"https://gist.github.com/7dcc495dda5e684cba94940a01f60e95.git\",\"html_url\":\"https://gist.github.com/7dcc495dda5e684cba94940a01f60e95\",\"files\":{\"random-fortune-1.txt\":{\"filename\":\"random-fortune-1.txt\",\"type\":\"text/plain\",\"language\":\"Text\",\"raw_url\":\"https://gist.githubusercontent.com/<GITHUB_NAMESPACE>/7dcc495dda5e684cba94940a01f60e95/raw/1d4c746630a25f87cd02492a7ec8c5b210c1ba56/random-fortune-1.txt\",\"size\":97,\"truncated\":false,\"content\":\"Your best consolation is the hope that the things you failed to get weren't\\nreally worth having.\\n\"}},\"public\":false,\"created_at\":\"2016-05-21T17:32:02Z\",\"updated_at\":\"2016-05-21T17:32:02Z\",\"description\":\"this is a secret <GITHUB_NAMESPACE>.\",\"comments\":0,\"user\":null,\"comments_url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/comments\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"forks\":[],\"history\":[{\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"version\":\"046de2514c1c74bfba663d3db69e39a6d9699d7a\",\"committed_at\":\"2016-05-21T17:32:02Z\",\"change_status\":{\"total\":2,\"additions\":2,\"deletions\":0},\"url\":\"https://api.github.com/gists/7dcc495dda5e684cba94940a01f60e95/046de2514c1c74bfba663d3db69e39a6d9699d7a\"}],\"truncated\":false}" }, "headers": { "Access-Control-Allow-Origin": "*", diff --git a/tests/integration/cassettes/test_github_test_30_request_list.json b/tests/integration/cassettes/test_github_test_30_request_list.json index d369ee6..0ffcbf1 100644 --- a/tests/integration/cassettes/test_github_test_30_request_list.json +++ b/tests/integration/cassettes/test_github_test_30_request_list.json @@ -169,6 +169,56 @@ }, "url": "https://api.github.com/repos/guyzmo/git-repo/pulls?direction=desc&per_page=100&sort=created" } + }, + { + "recorded_at": "2017-02-01T01:02:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Bad credentials\",\"documentation_url\":\"https://developer.github.com/v3\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "83", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:02:43 GMT", + "Server": "GitHub.com", + "Status": "401 Unauthorized", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "841A:4118:4FDC80F:6597FA9:589133B2", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "22", + "X-RateLimit-Reset": "1485913962", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 401, + "message": "Unauthorized" + }, + "url": "https://api.github.com/user" + } } ], "recorded_with": "betamax/0.5.1" diff --git a/tests/integration/cassettes/test_github_test_31_request_fetch.json b/tests/integration/cassettes/test_github_test_31_request_fetch.json index d8c7a41..34dcfb5 100644 --- a/tests/integration/cassettes/test_github_test_31_request_fetch.json +++ b/tests/integration/cassettes/test_github_test_31_request_fetch.json @@ -56,6 +56,56 @@ }, "url": "https://api.github.com/user" } + }, + { + "recorded_at": "2017-02-01T01:02:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Bad credentials\",\"documentation_url\":\"https://developer.github.com/v3\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "83", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:02:43 GMT", + "Server": "GitHub.com", + "Status": "401 Unauthorized", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE62:411B:893506C:AE82CFB:589133B3", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "21", + "X-RateLimit-Reset": "1485913962", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 401, + "message": "Unauthorized" + }, + "url": "https://api.github.com/user" + } } ], "recorded_with": "betamax/0.5.1" diff --git a/tests/integration/cassettes/test_github_test_31_request_fetch__bad_request.json b/tests/integration/cassettes/test_github_test_31_request_fetch__bad_request.json index 4b142f8..513f742 100644 --- a/tests/integration/cassettes/test_github_test_31_request_fetch__bad_request.json +++ b/tests/integration/cassettes/test_github_test_31_request_fetch__bad_request.json @@ -56,6 +56,56 @@ }, "url": "https://api.github.com/user" } + }, + { + "recorded_at": "2017-02-01T01:02:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Bad credentials\",\"documentation_url\":\"https://developer.github.com/v3\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "83", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:02:44 GMT", + "Server": "GitHub.com", + "Status": "401 Unauthorized", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8436:4114:9182A5C:B92D105:589133B4", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "20", + "X-RateLimit-Reset": "1485913962", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 401, + "message": "Unauthorized" + }, + "url": "https://api.github.com/user" + } } ], "recorded_with": "betamax/0.5.1" diff --git a/tests/integration/cassettes/test_github_test_32_request_create.json b/tests/integration/cassettes/test_github_test_32_request_create.json index 594866b..dee9b8a 100644 --- a/tests/integration/cassettes/test_github_test_32_request_create.json +++ b/tests/integration/cassettes/test_github_test_32_request_create.json @@ -119,7 +119,7 @@ "request": { "body": { "encoding": "utf-8", - "string": "{\"base\": \"master\", \"head\": \"<GITHUB_NAMESPACE>:pr-test\", \"title\": \"PR test\", \"body\": \"PR description\"}" + "string": "{\"base\": \"master\", \"head\": \"<GITHUB_NAMESPACE>:pr-<GITHUB_NAMESPACE>\", \"title\": \"PR <GITHUB_NAMESPACE>\", \"body\": \"PR description\"}" }, "headers": { "Accept": "application/vnd.github.v3.full+json", @@ -137,7 +137,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1\",\"id\":72636000,\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1\",\"diff_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1.diff\",\"patch_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1.patch\",\"issue_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1\",\"number\":1,\"state\":\"open\",\"locked\":false,\"title\":\"PR test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"PR description\",\"created_at\":\"2016-06-05T18:05:35Z\",\"updated_at\":\"2016-06-05T18:05:35Z\",\"closed_at\":null,\"merged_at\":null,\"merge_commit_sha\":null,\"assignee\":null,\"milestone\":null,\"commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/commits\",\"review_comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/comments\",\"review_comment_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/comments{/number}\",\"comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1/comments\",\"statuses_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/17d09cd46743d0121d2bf3929180fdb6290f69c4\",\"head\":{\"label\":\"<GITHUB_NAMESPACE>:pr-test\",\"ref\":\"pr-test\",\"sha\":\"17d09cd46743d0121d2bf3929180fdb6290f69c4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":60473639,\"name\":\"test_create_requests\",\"full_name\":\"<GITHUB_NAMESPACE>/test_create_requests\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"description\":\"\",\"fork\":false,\"url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests\",\"forks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/forks\",\"keys_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/teams\",\"hooks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/hooks\",\"issue_events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/events\",\"assignees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/tags\",\"blobs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/languages\",\"stargazers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/stargazers\",\"contributors_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contributors\",\"subscribers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscribers\",\"subscription_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscription\",\"commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/merges\",\"archive_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/downloads\",\"issues_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/deployments\",\"created_at\":\"2016-06-05T18:05:28Z\",\"updated_at\":\"2016-06-05T18:05:28Z\",\"pushed_at\":\"2016-06-05T18:05:34Z\",\"git_url\":\"git://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"ssh_url\":\"git@github.com:<GITHUB_NAMESPACE>/test_create_requests.git\",\"clone_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"svn_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"open_issues_count\":1,\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\"}},\"base\":{\"label\":\"<GITHUB_NAMESPACE>:master\",\"ref\":\"master\",\"sha\":\"4c07cd8a1840c4af5add38786366fad2deabf9a1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":60473639,\"name\":\"test_create_requests\",\"full_name\":\"<GITHUB_NAMESPACE>/test_create_requests\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"description\":\"\",\"fork\":false,\"url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests\",\"forks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/forks\",\"keys_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/teams\",\"hooks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/hooks\",\"issue_events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/events\",\"assignees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/tags\",\"blobs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/languages\",\"stargazers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/stargazers\",\"contributors_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contributors\",\"subscribers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscribers\",\"subscription_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscription\",\"commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/merges\",\"archive_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/downloads\",\"issues_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/deployments\",\"created_at\":\"2016-06-05T18:05:28Z\",\"updated_at\":\"2016-06-05T18:05:28Z\",\"pushed_at\":\"2016-06-05T18:05:34Z\",\"git_url\":\"git://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"ssh_url\":\"git@github.com:<GITHUB_NAMESPACE>/test_create_requests.git\",\"clone_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"svn_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"open_issues_count\":1,\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\"}},\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1\"},\"html\":{\"href\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1\"},\"issue\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1\"},\"comments\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1/comments\"},\"review_comments\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/comments\"},\"review_comment\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/comments{/number}\"},\"commits\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/commits\"},\"statuses\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/17d09cd46743d0121d2bf3929180fdb6290f69c4\"}},\"body_html\":\"<p>PR description</p>\",\"body_text\":\"PR description\",\"merged\":false,\"mergeable\":null,\"mergeable_state\":\"unknown\",\"merged_by\":null,\"comments\":0,\"review_comments\":0,\"commits\":1,\"additions\":1,\"deletions\":0,\"changed_files\":1}" + "string": "{\"url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1\",\"id\":72636000,\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1\",\"diff_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1.diff\",\"patch_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1.patch\",\"issue_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1\",\"number\":1,\"state\":\"open\",\"locked\":false,\"title\":\"PR <GITHUB_NAMESPACE>\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"PR description\",\"created_at\":\"2016-06-05T18:05:35Z\",\"updated_at\":\"2016-06-05T18:05:35Z\",\"closed_at\":null,\"merged_at\":null,\"merge_commit_sha\":null,\"assignee\":null,\"milestone\":null,\"commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/commits\",\"review_comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/comments\",\"review_comment_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/comments{/number}\",\"comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1/comments\",\"statuses_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/17d09cd46743d0121d2bf3929180fdb6290f69c4\",\"head\":{\"label\":\"<GITHUB_NAMESPACE>:pr-<GITHUB_NAMESPACE>\",\"ref\":\"pr-<GITHUB_NAMESPACE>\",\"sha\":\"17d09cd46743d0121d2bf3929180fdb6290f69c4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":60473639,\"name\":\"test_create_requests\",\"full_name\":\"<GITHUB_NAMESPACE>/test_create_requests\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"description\":\"\",\"fork\":false,\"url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests\",\"forks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/forks\",\"keys_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/teams\",\"hooks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/hooks\",\"issue_events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/events\",\"assignees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/tags\",\"blobs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/languages\",\"stargazers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/stargazers\",\"contributors_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contributors\",\"subscribers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscribers\",\"subscription_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscription\",\"commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/merges\",\"archive_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/downloads\",\"issues_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/deployments\",\"created_at\":\"2016-06-05T18:05:28Z\",\"updated_at\":\"2016-06-05T18:05:28Z\",\"pushed_at\":\"2016-06-05T18:05:34Z\",\"git_url\":\"git://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"ssh_url\":\"git@github.com:<GITHUB_NAMESPACE>/test_create_requests.git\",\"clone_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"svn_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"open_issues_count\":1,\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\"}},\"base\":{\"label\":\"<GITHUB_NAMESPACE>:master\",\"ref\":\"master\",\"sha\":\"4c07cd8a1840c4af5add38786366fad2deabf9a1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":60473639,\"name\":\"test_create_requests\",\"full_name\":\"<GITHUB_NAMESPACE>/test_create_requests\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"description\":\"\",\"fork\":false,\"url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests\",\"forks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/forks\",\"keys_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/teams\",\"hooks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/hooks\",\"issue_events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/events\",\"assignees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/tags\",\"blobs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/languages\",\"stargazers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/stargazers\",\"contributors_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contributors\",\"subscribers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscribers\",\"subscription_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscription\",\"commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/merges\",\"archive_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/downloads\",\"issues_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/deployments\",\"created_at\":\"2016-06-05T18:05:28Z\",\"updated_at\":\"2016-06-05T18:05:28Z\",\"pushed_at\":\"2016-06-05T18:05:34Z\",\"git_url\":\"git://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"ssh_url\":\"git@github.com:<GITHUB_NAMESPACE>/test_create_requests.git\",\"clone_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"svn_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"open_issues_count\":1,\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\"}},\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1\"},\"html\":{\"href\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1\"},\"issue\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1\"},\"comments\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1/comments\"},\"review_comments\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/comments\"},\"review_comment\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/comments{/number}\"},\"commits\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/commits\"},\"statuses\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/17d09cd46743d0121d2bf3929180fdb6290f69c4\"}},\"body_html\":\"<p>PR description</p>\",\"body_text\":\"PR description\",\"merged\":false,\"mergeable\":null,\"mergeable_state\":\"unknown\",\"merged_by\":null,\"comments\":0,\"review_comments\":0,\"commits\":1,\"additions\":1,\"deletions\":0,\"changed_files\":1}" }, "headers": { "Access-Control-Allow-Origin": "*", @@ -171,6 +171,56 @@ }, "url": "https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls" } + }, + { + "recorded_at": "2017-02-01T03:16:13", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Bad credentials\",\"documentation_url\":\"https://developer.github.com/v3\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "83", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 03:16:13 GMT", + "Server": "GitHub.com", + "Status": "401 Unauthorized", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "E5BA:4114:926FF08:BA585D0:589152FD", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "58", + "X-RateLimit-Reset": "1485922502", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 401, + "message": "Unauthorized" + }, + "url": "https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests" + } } ], "recorded_with": "betamax/0.5.1" diff --git a/tests/integration/cassettes/test_github_test_32_request_create__bad_branch.json b/tests/integration/cassettes/test_github_test_32_request_create__bad_branch.json index 00c9913..c82cc30 100644 --- a/tests/integration/cassettes/test_github_test_32_request_create__bad_branch.json +++ b/tests/integration/cassettes/test_github_test_32_request_create__bad_branch.json @@ -119,7 +119,7 @@ "request": { "body": { "encoding": "utf-8", - "string": "{\"title\": \"PR test\", \"body\": \"PR description\", \"base\": \"master\", \"head\": \"<GITHUB_NAMESPACE>:does_not_exists\"}" + "string": "{\"title\": \"PR <GITHUB_NAMESPACE>\", \"body\": \"PR description\", \"base\": \"master\", \"head\": \"<GITHUB_NAMESPACE>:does_not_exists\"}" }, "headers": { "Accept": "application/vnd.github.v3.full+json", @@ -166,6 +166,56 @@ }, "url": "https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls" } + }, + { + "recorded_at": "2017-02-01T03:17:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Bad credentials\",\"documentation_url\":\"https://developer.github.com/v3\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "83", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 03:17:25 GMT", + "Server": "GitHub.com", + "Status": "401 Unauthorized", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "9FD0:4114:9271E38:BA5AD6B:58915345", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "57", + "X-RateLimit-Reset": "1485922502", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 401, + "message": "Unauthorized" + }, + "url": "https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests" + } } ], "recorded_with": "betamax/0.5.1" diff --git a/tests/integration/cassettes/test_github_test_32_request_create__guess_branch.json b/tests/integration/cassettes/test_github_test_32_request_create__guess_branch.json index 25ba1d4..d0ac8a4 100644 --- a/tests/integration/cassettes/test_github_test_32_request_create__guess_branch.json +++ b/tests/integration/cassettes/test_github_test_32_request_create__guess_branch.json @@ -119,7 +119,7 @@ "request": { "body": { "encoding": "utf-8", - "string": "{\"body\": \"PR description\", \"base\": \"master\", \"head\": \"<GITHUB_NAMESPACE>:pr-test\", \"title\": \"PR test\"}" + "string": "{\"body\": \"PR description\", \"base\": \"master\", \"head\": \"<GITHUB_NAMESPACE>:pr-<GITHUB_NAMESPACE>\", \"title\": \"PR <GITHUB_NAMESPACE>\"}" }, "headers": { "Accept": "application/vnd.github.v3.full+json", @@ -137,7 +137,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1\",\"id\":72636541,\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1\",\"diff_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1.diff\",\"patch_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1.patch\",\"issue_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1\",\"number\":1,\"state\":\"open\",\"locked\":false,\"title\":\"PR test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"PR description\",\"created_at\":\"2016-06-05T18:28:23Z\",\"updated_at\":\"2016-06-05T18:28:23Z\",\"closed_at\":null,\"merged_at\":null,\"merge_commit_sha\":null,\"assignee\":null,\"milestone\":null,\"commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/commits\",\"review_comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/comments\",\"review_comment_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/comments{/number}\",\"comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1/comments\",\"statuses_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/2e029789fae27a4b9d798ef2b74af952236372db\",\"head\":{\"label\":\"<GITHUB_NAMESPACE>:pr-test\",\"ref\":\"pr-test\",\"sha\":\"2e029789fae27a4b9d798ef2b74af952236372db\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":60474574,\"name\":\"test_create_requests\",\"full_name\":\"<GITHUB_NAMESPACE>/test_create_requests\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"description\":\"\",\"fork\":false,\"url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests\",\"forks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/forks\",\"keys_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/teams\",\"hooks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/hooks\",\"issue_events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/events\",\"assignees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/tags\",\"blobs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/languages\",\"stargazers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/stargazers\",\"contributors_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contributors\",\"subscribers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscribers\",\"subscription_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscription\",\"commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/merges\",\"archive_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/downloads\",\"issues_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/deployments\",\"created_at\":\"2016-06-05T18:28:12Z\",\"updated_at\":\"2016-06-05T18:28:12Z\",\"pushed_at\":\"2016-06-05T18:28:20Z\",\"git_url\":\"git://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"ssh_url\":\"git@github.com:<GITHUB_NAMESPACE>/test_create_requests.git\",\"clone_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"svn_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"open_issues_count\":1,\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\"}},\"base\":{\"label\":\"<GITHUB_NAMESPACE>:master\",\"ref\":\"master\",\"sha\":\"6f9dc64fe531a9d7469b3b2d9408c72305b847ab\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":60474574,\"name\":\"test_create_requests\",\"full_name\":\"<GITHUB_NAMESPACE>/test_create_requests\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"description\":\"\",\"fork\":false,\"url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests\",\"forks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/forks\",\"keys_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/teams\",\"hooks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/hooks\",\"issue_events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/events\",\"assignees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/tags\",\"blobs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/languages\",\"stargazers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/stargazers\",\"contributors_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contributors\",\"subscribers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscribers\",\"subscription_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscription\",\"commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/merges\",\"archive_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/downloads\",\"issues_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/deployments\",\"created_at\":\"2016-06-05T18:28:12Z\",\"updated_at\":\"2016-06-05T18:28:12Z\",\"pushed_at\":\"2016-06-05T18:28:20Z\",\"git_url\":\"git://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"ssh_url\":\"git@github.com:<GITHUB_NAMESPACE>/test_create_requests.git\",\"clone_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"svn_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"open_issues_count\":1,\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\"}},\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1\"},\"html\":{\"href\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1\"},\"issue\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1\"},\"comments\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1/comments\"},\"review_comments\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/comments\"},\"review_comment\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/comments{/number}\"},\"commits\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/commits\"},\"statuses\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/2e029789fae27a4b9d798ef2b74af952236372db\"}},\"body_html\":\"<p>PR description</p>\",\"body_text\":\"PR description\",\"merged\":false,\"mergeable\":null,\"mergeable_state\":\"unknown\",\"merged_by\":null,\"comments\":0,\"review_comments\":0,\"commits\":1,\"additions\":1,\"deletions\":0,\"changed_files\":1}" + "string": "{\"url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1\",\"id\":72636541,\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1\",\"diff_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1.diff\",\"patch_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1.patch\",\"issue_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1\",\"number\":1,\"state\":\"open\",\"locked\":false,\"title\":\"PR <GITHUB_NAMESPACE>\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"PR description\",\"created_at\":\"2016-06-05T18:28:23Z\",\"updated_at\":\"2016-06-05T18:28:23Z\",\"closed_at\":null,\"merged_at\":null,\"merge_commit_sha\":null,\"assignee\":null,\"milestone\":null,\"commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/commits\",\"review_comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/comments\",\"review_comment_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/comments{/number}\",\"comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1/comments\",\"statuses_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/2e029789fae27a4b9d798ef2b74af952236372db\",\"head\":{\"label\":\"<GITHUB_NAMESPACE>:pr-<GITHUB_NAMESPACE>\",\"ref\":\"pr-<GITHUB_NAMESPACE>\",\"sha\":\"2e029789fae27a4b9d798ef2b74af952236372db\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":60474574,\"name\":\"test_create_requests\",\"full_name\":\"<GITHUB_NAMESPACE>/test_create_requests\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"description\":\"\",\"fork\":false,\"url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests\",\"forks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/forks\",\"keys_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/teams\",\"hooks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/hooks\",\"issue_events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/events\",\"assignees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/tags\",\"blobs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/languages\",\"stargazers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/stargazers\",\"contributors_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contributors\",\"subscribers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscribers\",\"subscription_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscription\",\"commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/merges\",\"archive_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/downloads\",\"issues_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/deployments\",\"created_at\":\"2016-06-05T18:28:12Z\",\"updated_at\":\"2016-06-05T18:28:12Z\",\"pushed_at\":\"2016-06-05T18:28:20Z\",\"git_url\":\"git://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"ssh_url\":\"git@github.com:<GITHUB_NAMESPACE>/test_create_requests.git\",\"clone_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"svn_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"open_issues_count\":1,\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\"}},\"base\":{\"label\":\"<GITHUB_NAMESPACE>:master\",\"ref\":\"master\",\"sha\":\"6f9dc64fe531a9d7469b3b2d9408c72305b847ab\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":60474574,\"name\":\"test_create_requests\",\"full_name\":\"<GITHUB_NAMESPACE>/test_create_requests\",\"owner\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"description\":\"\",\"fork\":false,\"url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests\",\"forks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/forks\",\"keys_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/teams\",\"hooks_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/hooks\",\"issue_events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/events\",\"assignees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/tags\",\"blobs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/languages\",\"stargazers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/stargazers\",\"contributors_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contributors\",\"subscribers_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscribers\",\"subscription_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/subscription\",\"commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/merges\",\"archive_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/downloads\",\"issues_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/deployments\",\"created_at\":\"2016-06-05T18:28:12Z\",\"updated_at\":\"2016-06-05T18:28:12Z\",\"pushed_at\":\"2016-06-05T18:28:20Z\",\"git_url\":\"git://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"ssh_url\":\"git@github.com:<GITHUB_NAMESPACE>/test_create_requests.git\",\"clone_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests.git\",\"svn_url\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"open_issues_count\":1,\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\"}},\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1\"},\"html\":{\"href\":\"https://github.com/<GITHUB_NAMESPACE>/test_create_requests/pull/1\"},\"issue\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1\"},\"comments\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/issues/1/comments\"},\"review_comments\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/comments\"},\"review_comment\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/comments{/number}\"},\"commits\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls/1/commits\"},\"statuses\":{\"href\":\"https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/statuses/2e029789fae27a4b9d798ef2b74af952236372db\"}},\"body_html\":\"<p>PR description</p>\",\"body_text\":\"PR description\",\"merged\":false,\"mergeable\":null,\"mergeable_state\":\"unknown\",\"merged_by\":null,\"comments\":0,\"review_comments\":0,\"commits\":1,\"additions\":1,\"deletions\":0,\"changed_files\":1}" }, "headers": { "Access-Control-Allow-Origin": "*", @@ -171,6 +171,56 @@ }, "url": "https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests/pulls" } + }, + { + "recorded_at": "2017-02-01T03:18:30", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Bad credentials\",\"documentation_url\":\"https://developer.github.com/v3\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "83", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 03:18:30 GMT", + "Server": "GitHub.com", + "Status": "401 Unauthorized", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "806A:4114:9273811:BA5CE6C:58915385", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "56", + "X-RateLimit-Reset": "1485922502", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 401, + "message": "Unauthorized" + }, + "url": "https://api.github.com/repos/<GITHUB_NAMESPACE>/test_create_requests" + } } ], "recorded_with": "betamax/0.5.1" diff --git a/tests/integration/cassettes/test_github_test_34_list__long.json b/tests/integration/cassettes/test_github_test_34_list__long.json index 9fd220f..b23a269 100644 --- a/tests/integration/cassettes/test_github_test_34_list__long.json +++ b/tests/integration/cassettes/test_github_test_34_list__long.json @@ -22,7 +22,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<BITBUCKET_NAMESPACE>\",\"company\":null,\"blog\":\"http://<BITBUCKET_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":null,\"public_repos\":87,\"public_gists\":17,\"followers\":54,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-09-03T19:19:47Z\"}" + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":null,\"public_repos\":87,\"public_gists\":17,\"followers\":54,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-09-03T19:19:47Z\"}" }, "headers": { "Access-Control-Allow-Origin": "*", @@ -192,7 +192,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "[{\"sha\":\"da2d0802fccbec805c5f3ddad5ddc6a3eba54975\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-30T13:00:21Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-30T13:00:21Z\"},\"message\":\"Version bump to v1.5.0\",\"tree\":{\"sha\":\"87bfdb207105df8ce451af1867527b34fd261e43\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/87bfdb207105df8ce451af1867527b34fd261e43\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/da2d0802fccbec805c5f3ddad5ddc6a3eba54975\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/da2d0802fccbec805c5f3ddad5ddc6a3eba54975\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/da2d0802fccbec805c5f3ddad5ddc6a3eba54975\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/da2d0802fccbec805c5f3ddad5ddc6a3eba54975/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\"}]},{\"sha\":\"37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-30T12:41:58Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-30T12:41:58Z\"},\"message\":\"Added more introspection to main() testing and added more asserts/more tests to test_main\",\"tree\":{\"sha\":\"581d464703f964bc11720e292834d8c1c9949025\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/581d464703f964bc11720e292834d8c1c9949025\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/37a4887a4364ebe19b2f06844d1ef6a919ee2ad8/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\"}]},{\"sha\":\"b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-30T12:41:24Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-30T12:41:24Z\"},\"message\":\"Made --clone default to False for fork, added --add to create\",\"tree\":{\"sha\":\"567fa850e5053026f6e237b20acd906af7d546c6\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/567fa850e5053026f6e237b20acd906af7d546c6\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\"}]},{\"sha\":\"2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:21:52Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:21:52Z\"},\"message\":\"Updated gitignore\",\"tree\":{\"sha\":\"d43f0a79054c17771c3285418ad1f98cece368cc\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/d43f0a79054c17771c3285418ad1f98cece368cc\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2fc27f12e189c6bfa5806fdd624fae34e39a7cf7/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"b092f8de31fd7222a898d5b5197dd1899a1e548d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b092f8de31fd7222a898d5b5197dd1899a1e548d\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b092f8de31fd7222a898d5b5197dd1899a1e548d\"}]},{\"sha\":\"b092f8de31fd7222a898d5b5197dd1899a1e548d\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:20:23Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:20:23Z\"},\"message\":\"Added a bunch of pragma no cover in the code.\",\"tree\":{\"sha\":\"43153325026279926f590aa418ac3dc575968d1e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/43153325026279926f590aa418ac3dc575968d1e\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/b092f8de31fd7222a898d5b5197dd1899a1e548d\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b092f8de31fd7222a898d5b5197dd1899a1e548d\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b092f8de31fd7222a898d5b5197dd1899a1e548d\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b092f8de31fd7222a898d5b5197dd1899a1e548d/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"3d0843649b465bff2bf3860b3d726a89c100047f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/3d0843649b465bff2bf3860b3d726a89c100047f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/3d0843649b465bff2bf3860b3d726a89c100047f\"}]},{\"sha\":\"3d0843649b465bff2bf3860b3d726a89c100047f\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:19:38Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:19:38Z\"},\"message\":\"Added missing cassettes (create/already exists)\",\"tree\":{\"sha\":\"c618a8d88baf09adab5b603795e4db0da36e74f8\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/c618a8d88baf09adab5b603795e4db0da36e74f8\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/3d0843649b465bff2bf3860b3d726a89c100047f\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/3d0843649b465bff2bf3860b3d726a89c100047f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/3d0843649b465bff2bf3860b3d726a89c100047f\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/3d0843649b465bff2bf3860b3d726a89c100047f/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"e7951a2bfc4df984fa643e416232acfdb5a899e4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e7951a2bfc4df984fa643e416232acfdb5a899e4\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e7951a2bfc4df984fa643e416232acfdb5a899e4\"}]},{\"sha\":\"e7951a2bfc4df984fa643e416232acfdb5a899e4\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:19:12Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:19:12Z\"},\"message\":\"Added test suite for the main() function with mockup of the repository\\n\\nN.B.: might need more assertions\",\"tree\":{\"sha\":\"3ab0c9bf2b2eec5768cea84b02492e14d2263009\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/3ab0c9bf2b2eec5768cea84b02492e14d2263009\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/e7951a2bfc4df984fa643e416232acfdb5a899e4\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e7951a2bfc4df984fa643e416232acfdb5a899e4\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e7951a2bfc4df984fa643e416232acfdb5a899e4\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e7951a2bfc4df984fa643e416232acfdb5a899e4/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"86a2d7a2fca2f48c0e302c9868e34d339d929fdb\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/86a2d7a2fca2f48c0e302c9868e34d339d929fdb\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/86a2d7a2fca2f48c0e302c9868e34d339d929fdb\"}]},{\"sha\":\"86a2d7a2fca2f48c0e302c9868e34d339d929fdb\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:18:10Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:18:10Z\"},\"message\":\"Updated gitlab test suite with extra test (existing repo error on create)\",\"tree\":{\"sha\":\"64c3fc4d2cd91cf15cfbe3be4d4fb06876cc3f6d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/64c3fc4d2cd91cf15cfbe3be4d4fb06876cc3f6d\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/86a2d7a2fca2f48c0e302c9868e34d339d929fdb\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/86a2d7a2fca2f48c0e302c9868e34d339d929fdb\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/86a2d7a2fca2f48c0e302c9868e34d339d929fdb\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/86a2d7a2fca2f48c0e302c9868e34d339d929fdb/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"30806ab455f8ab926f66e0a70f6d70337536ca07\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/30806ab455f8ab926f66e0a70f6d70337536ca07\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/30806ab455f8ab926f66e0a70f6d70337536ca07\"}]},{\"sha\":\"30806ab455f8ab926f66e0a70f6d70337536ca07\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:17:31Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:17:31Z\"},\"message\":\"Added git mockup facility in helpers\",\"tree\":{\"sha\":\"db6abce2a668faba93f40e0df7ca7c5e3c796c06\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/db6abce2a668faba93f40e0df7ca7c5e3c796c06\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/30806ab455f8ab926f66e0a70f6d70337536ca07\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/30806ab455f8ab926f66e0a70f6d70337536ca07\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/30806ab455f8ab926f66e0a70f6d70337536ca07\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/30806ab455f8ab926f66e0a70f6d70337536ca07/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"8183cea1e57935d58b8dae39931c7119b47057d9\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/8183cea1e57935d58b8dae39931c7119b47057d9\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/8183cea1e57935d58b8dae39931c7119b47057d9\"}]},{\"sha\":\"8183cea1e57935d58b8dae39931c7119b47057d9\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:16:34Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:16:34Z\"},\"message\":\"Improved github test suite\\n\\n- added error check for create/already existing repo\\n- removed old imports\",\"tree\":{\"sha\":\"4d80da97f4969015d72ffbd716f5acac0c08a9a8\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/4d80da97f4969015d72ffbd716f5acac0c08a9a8\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/8183cea1e57935d58b8dae39931c7119b47057d9\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/8183cea1e57935d58b8dae39931c7119b47057d9\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/8183cea1e57935d58b8dae39931c7119b47057d9\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/8183cea1e57935d58b8dae39931c7119b47057d9/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\"}]},{\"sha\":\"7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:10:05Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:10:05Z\"},\"message\":\"Simplified call scheme for open() (removed extra conditional)\",\"tree\":{\"sha\":\"4ff8daac796b940f6ff30b557fa7a97077e3ef6d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/4ff8daac796b940f6ff30b557fa7a97077e3ef6d\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"bf8b23d0554b8abd8372832ae3ece729a505d184\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/bf8b23d0554b8abd8372832ae3ece729a505d184\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/bf8b23d0554b8abd8372832ae3ece729a505d184\"}]},{\"sha\":\"bf8b23d0554b8abd8372832ae3ece729a505d184\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:09:27Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:09:27Z\"},\"message\":\"Fixed wrong path to gitconfig file in repositoryservice to load configuration\",\"tree\":{\"sha\":\"576c025c0dd35c354b15b4dcb2f5aabe472c0475\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/576c025c0dd35c354b15b4dcb2f5aabe472c0475\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/bf8b23d0554b8abd8372832ae3ece729a505d184\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/bf8b23d0554b8abd8372832ae3ece729a505d184\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/bf8b23d0554b8abd8372832ae3ece729a505d184\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/bf8b23d0554b8abd8372832ae3ece729a505d184/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\"}]},{\"sha\":\"f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:08:46Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:08:46Z\"},\"message\":\"Fixed handling of more errors for already existing repository in github::create\",\"tree\":{\"sha\":\"511a42944d3bedad2b6afa6c0385436b0b7861f0\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/511a42944d3bedad2b6afa6c0385436b0b7861f0\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f72d0bfc16168e3c01053ca2d2f4489b8d89b0db/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"21ab3fcba20d76f404694582e28835471ec38ac0\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/21ab3fcba20d76f404694582e28835471ec38ac0\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/21ab3fcba20d76f404694582e28835471ec38ac0\"}]},{\"sha\":\"21ab3fcba20d76f404694582e28835471ec38ac0\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:06:28Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:06:28Z\"},\"message\":\"Improved error handling of bad repository in fork action in main function\",\"tree\":{\"sha\":\"da41332a7b4ccd611c3bdc33c4b09bd2c7930268\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/da41332a7b4ccd611c3bdc33c4b09bd2c7930268\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/21ab3fcba20d76f404694582e28835471ec38ac0\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/21ab3fcba20d76f404694582e28835471ec38ac0\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/21ab3fcba20d76f404694582e28835471ec38ac0\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/21ab3fcba20d76f404694582e28835471ec38ac0/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"2c752047ae1949e38227d8192bc583a8460c2107\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2c752047ae1949e38227d8192bc583a8460c2107\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2c752047ae1949e38227d8192bc583a8460c2107\"}]},{\"sha\":\"2c752047ae1949e38227d8192bc583a8460c2107\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:04:53Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:04:53Z\"},\"message\":\"Missed gitlab test suite cassette added\",\"tree\":{\"sha\":\"ff942864337dfe5cfd6e7a84e54261f0a812627c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/ff942864337dfe5cfd6e7a84e54261f0a812627c\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/2c752047ae1949e38227d8192bc583a8460c2107\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2c752047ae1949e38227d8192bc583a8460c2107\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2c752047ae1949e38227d8192bc583a8460c2107\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2c752047ae1949e38227d8192bc583a8460c2107/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"e7619a91b486ddda8ef26985a351667f7cca1ebf\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e7619a91b486ddda8ef26985a351667f7cca1ebf\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e7619a91b486ddda8ef26985a351667f7cca1ebf\"}]},{\"sha\":\"e7619a91b486ddda8ef26985a351667f7cca1ebf\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:04:06Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:04:06Z\"},\"message\":\"Added and updated cassettes for gitlab and bitbucket tests suites\",\"tree\":{\"sha\":\"8e4e74dd7a22dad5b13285bbdf1ebaf64e06066b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/8e4e74dd7a22dad5b13285bbdf1ebaf64e06066b\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/e7619a91b486ddda8ef26985a351667f7cca1ebf\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e7619a91b486ddda8ef26985a351667f7cca1ebf\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e7619a91b486ddda8ef26985a351667f7cca1ebf\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e7619a91b486ddda8ef26985a351667f7cca1ebf/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"5421a55f5ab751fdaab66154ac41988da54b4aa0\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5421a55f5ab751fdaab66154ac41988da54b4aa0\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5421a55f5ab751fdaab66154ac41988da54b4aa0\"}]},{\"sha\":\"5421a55f5ab751fdaab66154ac41988da54b4aa0\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:02:37Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:02:37Z\"},\"message\":\"Updated bitbucket tests suite\",\"tree\":{\"sha\":\"8d15028aa66357d6eb0c7dcfae85c78d4bddefd0\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/8d15028aa66357d6eb0c7dcfae85c78d4bddefd0\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/5421a55f5ab751fdaab66154ac41988da54b4aa0\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5421a55f5ab751fdaab66154ac41988da54b4aa0\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5421a55f5ab751fdaab66154ac41988da54b4aa0\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5421a55f5ab751fdaab66154ac41988da54b4aa0/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\"}]},{\"sha\":\"e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:01:29Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:01:29Z\"},\"message\":\"Improved GitRepoTestCase\\n\\n- updated setup\\n- updated fork command (with git mockup)\\n- updated open command\",\"tree\":{\"sha\":\"97f72cdbe055ffe9287f7e2a0f1e3ad7551cf0e1\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/97f72cdbe055ffe9287f7e2a0f1e3ad7551cf0e1\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"a508dd1126d361d7563e4117b49c5e57ff6fa7cb\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a508dd1126d361d7563e4117b49c5e57ff6fa7cb\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/a508dd1126d361d7563e4117b49c5e57ff6fa7cb\"}]},{\"sha\":\"a508dd1126d361d7563e4117b49c5e57ff6fa7cb\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:59:18Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:59:18Z\"},\"message\":\"Fix for ugly call to delete\\n\\n- because of a bug (cf issue 107 of python-gitlab), we need to make an ugly call to delete()\\n\\nhttps://github.com/gpocentek/python-gitlab/issues/107\",\"tree\":{\"sha\":\"bd8c7684980f4c22e5da33b0690c9d5c08444986\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/bd8c7684980f4c22e5da33b0690c9d5c08444986\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/a508dd1126d361d7563e4117b49c5e57ff6fa7cb\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a508dd1126d361d7563e4117b49c5e57ff6fa7cb\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/a508dd1126d361d7563e4117b49c5e57ff6fa7cb\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a508dd1126d361d7563e4117b49c5e57ff6fa7cb/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"a838ed8f58741713fcba248038e64f555c1b67f8\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a838ed8f58741713fcba248038e64f555c1b67f8\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/a838ed8f58741713fcba248038e64f555c1b67f8\"}]},{\"sha\":\"a838ed8f58741713fcba248038e64f555c1b67f8\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:56:36Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:56:36Z\"},\"message\":\"[WIP] Added temporary fix for impossibility to list updated repositories\\n\\nI've removed the exception sent when no repository has been found, because just after\\nthe create action in tests, this method always lacks the new repository\",\"tree\":{\"sha\":\"90e1206e21fa8e7b86445e878eb2cc8eb3bbc90f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/90e1206e21fa8e7b86445e878eb2cc8eb3bbc90f\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/a838ed8f58741713fcba248038e64f555c1b67f8\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a838ed8f58741713fcba248038e64f555c1b67f8\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/a838ed8f58741713fcba248038e64f555c1b67f8\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a838ed8f58741713fcba248038e64f555c1b67f8/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"4762547638bc3c4001f561e2d6fd9e19f58b5a95\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/4762547638bc3c4001f561e2d6fd9e19f58b5a95\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/4762547638bc3c4001f561e2d6fd9e19f58b5a95\"}]},{\"sha\":\"4762547638bc3c4001f561e2d6fd9e19f58b5a95\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:54:52Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:54:52Z\"},\"message\":\"Various fixes for bitbucket module\\n\\n- added get_user to force login\\n- switched from default= to tracking= in add() method\\n- fixed call for delete method\\n- fixed call for get repositories\",\"tree\":{\"sha\":\"f04370cb244e56bd69143a93f09209e7d13317e5\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f04370cb244e56bd69143a93f09209e7d13317e5\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/4762547638bc3c4001f561e2d6fd9e19f58b5a95\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/4762547638bc3c4001f561e2d6fd9e19f58b5a95\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/4762547638bc3c4001f561e2d6fd9e19f58b5a95\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/4762547638bc3c4001f561e2d6fd9e19f58b5a95/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\"}]},{\"sha\":\"ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:52:24Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:52:24Z\"},\"message\":\"Updated bitbucket subclass fixes\",\"tree\":{\"sha\":\"27c22f40ee75487e41534bc8af839e64656259af\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/27c22f40ee75487e41534bc8af839e64656259af\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\"}]},{\"sha\":\"70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:51:45Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:51:45Z\"},\"message\":\"Updated format_path() method prototype\\n\\n- changed to namespace/repository instead of user/repo\",\"tree\":{\"sha\":\"b83e2f6ddf7225d0498e249c4c3fefccef3e5a3d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/b83e2f6ddf7225d0498e249c4c3fefccef3e5a3d\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"1d600105a75dcdee7e542bf94a7abf4526a04e99\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/1d600105a75dcdee7e542bf94a7abf4526a04e99\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/1d600105a75dcdee7e542bf94a7abf4526a04e99\"}]},{\"sha\":\"1d600105a75dcdee7e542bf94a7abf4526a04e99\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:49:54Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:49:54Z\"},\"message\":\"Updated buildout config with default valuers for arguments\",\"tree\":{\"sha\":\"cd4e58b6187d04269b074a907e6e0ab8c135a66c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/cd4e58b6187d04269b074a907e6e0ab8c135a66c\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/1d600105a75dcdee7e542bf94a7abf4526a04e99\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/1d600105a75dcdee7e542bf94a7abf4526a04e99\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/1d600105a75dcdee7e542bf94a7abf4526a04e99\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/1d600105a75dcdee7e542bf94a7abf4526a04e99/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"291531b6437aa5cf2578963e244996f092e7b40c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/291531b6437aa5cf2578963e244996f092e7b40c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/291531b6437aa5cf2578963e244996f092e7b40c\"}]},{\"sha\":\"291531b6437aa5cf2578963e244996f092e7b40c\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T09:41:21Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T09:43:17Z\"},\"message\":\"Updated buildout with proper py.test arguments and removed tox/nose\",\"tree\":{\"sha\":\"2a7d91aee9d29b9b65c09a061acd8989f8e3d2f4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/2a7d91aee9d29b9b65c09a061acd8989f8e3d2f4\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/291531b6437aa5cf2578963e244996f092e7b40c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/291531b6437aa5cf2578963e244996f092e7b40c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/291531b6437aa5cf2578963e244996f092e7b40c\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/291531b6437aa5cf2578963e244996f092e7b40c/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"e2ab22cc7c80eb985db64d0659b9bd3f494a9818\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e2ab22cc7c80eb985db64d0659b9bd3f494a9818\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e2ab22cc7c80eb985db64d0659b9bd3f494a9818\"}]},{\"sha\":\"e2ab22cc7c80eb985db64d0659b9bd3f494a9818\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T09:00:52Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T09:00:52Z\"},\"message\":\"Added more cassettes for gitlab tests\",\"tree\":{\"sha\":\"bc5b0c86169fd1666bdd565ffd5e88f95962b21e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/bc5b0c86169fd1666bdd565ffd5e88f95962b21e\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/e2ab22cc7c80eb985db64d0659b9bd3f494a9818\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e2ab22cc7c80eb985db64d0659b9bd3f494a9818\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e2ab22cc7c80eb985db64d0659b9bd3f494a9818\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e2ab22cc7c80eb985db64d0659b9bd3f494a9818/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"b2661f56e278119806013b56f5ac748a972d89fd\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b2661f56e278119806013b56f5ac748a972d89fd\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b2661f56e278119806013b56f5ac748a972d89fd\"}]},{\"sha\":\"b2661f56e278119806013b56f5ac748a972d89fd\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T09:00:19Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T09:00:19Z\"},\"message\":\"Removed colourisation of logs, added git module verbosity update\",\"tree\":{\"sha\":\"7bde8b889e033780a8a12156e03603c713b8d4d4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/7bde8b889e033780a8a12156e03603c713b8d4d4\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/b2661f56e278119806013b56f5ac748a972d89fd\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b2661f56e278119806013b56f5ac748a972d89fd\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b2661f56e278119806013b56f5ac748a972d89fd\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b2661f56e278119806013b56f5ac748a972d89fd/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"88b30051926ca2c744ebd95344d34d25bb50b3b6\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88b30051926ca2c744ebd95344d34d25bb50b3b6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88b30051926ca2c744ebd95344d34d25bb50b3b6\"}]},{\"sha\":\"88b30051926ca2c744ebd95344d34d25bb50b3b6\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:58:42Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:58:42Z\"},\"message\":\"Fixed gitlab add method handling, error handling and updated tests\\n\\n- fixed default\u2192tracking paramater change for add()\\n- updated error handling to simplify return check for fork()\\n- removed colorisation of log in tests\\n- updated fork cassette for gitlab\",\"tree\":{\"sha\":\"02e10113cab33aa244679dff88ee10f2e849da01\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/02e10113cab33aa244679dff88ee10f2e849da01\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/88b30051926ca2c744ebd95344d34d25bb50b3b6\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88b30051926ca2c744ebd95344d34d25bb50b3b6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88b30051926ca2c744ebd95344d34d25bb50b3b6\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88b30051926ca2c744ebd95344d34d25bb50b3b6/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"2e1e1be09f97f8930475c05cdd4c370b71197a5a\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2e1e1be09f97f8930475c05cdd4c370b71197a5a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2e1e1be09f97f8930475c05cdd4c370b71197a5a\"}]},{\"sha\":\"2e1e1be09f97f8930475c05cdd4c370b71197a5a\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:55:08Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:55:08Z\"},\"message\":\"Fixed gitlab authentication process\",\"tree\":{\"sha\":\"55350353b12e52a81af9c98dccacdaa801048378\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/55350353b12e52a81af9c98dccacdaa801048378\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/2e1e1be09f97f8930475c05cdd4c370b71197a5a\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2e1e1be09f97f8930475c05cdd4c370b71197a5a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2e1e1be09f97f8930475c05cdd4c370b71197a5a\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2e1e1be09f97f8930475c05cdd4c370b71197a5a/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"816064980bd73e5da10cae4ac4a609cfb9f20d19\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/816064980bd73e5da10cae4ac4a609cfb9f20d19\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/816064980bd73e5da10cae4ac4a609cfb9f20d19\"}]},{\"sha\":\"816064980bd73e5da10cae4ac4a609cfb9f20d19\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:54:44Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:54:44Z\"},\"message\":\"Added get_repository() method to interface,\\nadded repository exists assert helpers\",\"tree\":{\"sha\":\"ffe4ca7f343213967806c1f5e2a306f78a072a27\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/ffe4ca7f343213967806c1f5e2a306f78a072a27\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/816064980bd73e5da10cae4ac4a609cfb9f20d19\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/816064980bd73e5da10cae4ac4a609cfb9f20d19\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/816064980bd73e5da10cae4ac4a609cfb9f20d19\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/816064980bd73e5da10cae4ac4a609cfb9f20d19/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\"}]},{\"sha\":\"382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:51:10Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:51:10Z\"},\"message\":\"Added capture log module to tests\",\"tree\":{\"sha\":\"be929b45ef34b58990d1bc8b14d0f4632190dc06\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/be929b45ef34b58990d1bc8b14d0f4632190dc06\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\"}]},{\"sha\":\"ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:49:05Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:49:05Z\"},\"message\":\"Added cassettes for github tests\",\"tree\":{\"sha\":\"c7f09658fd80046d3ee73db41eb94c82d7c9ea16\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/c7f09658fd80046d3ee73db41eb94c82d7c9ea16\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/ca1fe480db72eed6d05d150ffaf8e9f6dfa06961/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"79908d3e5a8f998bd7c6468f888056daf77a066d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/79908d3e5a8f998bd7c6468f888056daf77a066d\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/79908d3e5a8f998bd7c6468f888056daf77a066d\"}]},{\"sha\":\"79908d3e5a8f998bd7c6468f888056daf77a066d\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:48:33Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:48:33Z\"},\"message\":\"Added gitlab tests (WIP)\",\"tree\":{\"sha\":\"a623e00795c275632a82cc91b83b687aa0ebc472\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/a623e00795c275632a82cc91b83b687aa0ebc472\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/79908d3e5a8f998bd7c6468f888056daf77a066d\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/79908d3e5a8f998bd7c6468f888056daf77a066d\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/79908d3e5a8f998bd7c6468f888056daf77a066d\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/79908d3e5a8f998bd7c6468f888056daf77a066d/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\"}]},{\"sha\":\"c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:47:49Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:47:49Z\"},\"message\":\"Fixed initialisation of gitlab\",\"tree\":{\"sha\":\"edec9f0fca6a7ff0a31e670a2d5d47f198eb5869\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/edec9f0fca6a7ff0a31e670a2d5d47f198eb5869\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\"}]},{\"sha\":\"cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:47:36Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:47:36Z\"},\"message\":\"Updated tests and cassettes for github testing\",\"tree\":{\"sha\":\"be9a7f48a88722b548e57300604f403d16dfb433\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/be9a7f48a88722b548e57300604f403d16dfb433\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/cf1b06c85d2aaec8f500ab8d8b95fc09103b9396/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"e704a9ea948c2f7a68315b26721c815b0c4fb520\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e704a9ea948c2f7a68315b26721c815b0c4fb520\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e704a9ea948c2f7a68315b26721c815b0c4fb520\"}]},{\"sha\":\"e704a9ea948c2f7a68315b26721c815b0c4fb520\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:35:06Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:36:43Z\"},\"message\":\"Cosmetics change\\n\\n- updated assert calls\\n- updated confirmation question\",\"tree\":{\"sha\":\"f5ee129b1f88c4b09ea3ddbd198ed660410b07af\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f5ee129b1f88c4b09ea3ddbd198ed660410b07af\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/e704a9ea948c2f7a68315b26721c815b0c4fb520\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e704a9ea948c2f7a68315b26721c815b0c4fb520\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e704a9ea948c2f7a68315b26721c815b0c4fb520\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e704a9ea948c2f7a68315b26721c815b0c4fb520/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"9688956e2bd252741600818e8880a2fd2c697c6a\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9688956e2bd252741600818e8880a2fd2c697c6a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9688956e2bd252741600818e8880a2fd2c697c6a\"}]},{\"sha\":\"9688956e2bd252741600818e8880a2fd2c697c6a\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:33:21Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:33:21Z\"},\"message\":\"Added --no-clone option to the fork action\\n\\n- updated subclasses\",\"tree\":{\"sha\":\"e0c4967f67f6402d4e606bacea1f43b45d65bcc5\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/e0c4967f67f6402d4e606bacea1f43b45d65bcc5\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/9688956e2bd252741600818e8880a2fd2c697c6a\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9688956e2bd252741600818e8880a2fd2c697c6a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9688956e2bd252741600818e8880a2fd2c697c6a\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9688956e2bd252741600818e8880a2fd2c697c6a/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"361cfb25f2e0a2f944f3827439e63c175d78f660\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/361cfb25f2e0a2f944f3827439e63c175d78f660\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/361cfb25f2e0a2f944f3827439e63c175d78f660\"}]},{\"sha\":\"361cfb25f2e0a2f944f3827439e63c175d78f660\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:31:16Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:31:16Z\"},\"message\":\"Added an user virtual property to RepositoryService\\n\\n- added implementations in subclasses\\n- updated usage\",\"tree\":{\"sha\":\"bf2db89230284f6825401bb63d947073d0fe8e61\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/bf2db89230284f6825401bb63d947073d0fe8e61\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/361cfb25f2e0a2f944f3827439e63c175d78f660\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/361cfb25f2e0a2f944f3827439e63c175d78f660\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/361cfb25f2e0a2f944f3827439e63c175d78f660\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/361cfb25f2e0a2f944f3827439e63c175d78f660/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\"}]},{\"sha\":\"8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:25:43Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:25:43Z\"},\"message\":\"Updated add method working\\n\\n- changed default to tracking to setup branch to track\",\"tree\":{\"sha\":\"7e3ad70828459ce1a8f0d2af923a3a733034d6a3\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/7e3ad70828459ce1a8f0d2af923a3a733034d6a3\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"0da93f2f9a8cbf8629792e9e885014e288407df0\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/0da93f2f9a8cbf8629792e9e885014e288407df0\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/0da93f2f9a8cbf8629792e9e885014e288407df0\"}]},{\"sha\":\"0da93f2f9a8cbf8629792e9e885014e288407df0\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T16:16:24Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T16:16:24Z\"},\"message\":\"Added support for coverage and sugar plugins for pytest\",\"tree\":{\"sha\":\"12c71eef9d97e2e7b47ed4c301c779be60a12770\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/12c71eef9d97e2e7b47ed4c301c779be60a12770\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/0da93f2f9a8cbf8629792e9e885014e288407df0\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/0da93f2f9a8cbf8629792e9e885014e288407df0\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/0da93f2f9a8cbf8629792e9e885014e288407df0\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/0da93f2f9a8cbf8629792e9e885014e288407df0/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"56022905a04992e8ee270f3685853c989b8b152e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/56022905a04992e8ee270f3685853c989b8b152e\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/56022905a04992e8ee270f3685853c989b8b152e\"}]},{\"sha\":\"56022905a04992e8ee270f3685853c989b8b152e\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T12:48:53Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T12:48:53Z\"},\"message\":\"Updated bitbucket module and added bitbucket tests\\n\\n- made monkey patching into subclass\",\"tree\":{\"sha\":\"9ad18f56ba6a72a66548002f7687281a3a8de75f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/9ad18f56ba6a72a66548002f7687281a3a8de75f\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/56022905a04992e8ee270f3685853c989b8b152e\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/56022905a04992e8ee270f3685853c989b8b152e\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/56022905a04992e8ee270f3685853c989b8b152e\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/56022905a04992e8ee270f3685853c989b8b152e/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"a8a3727c8de39e681ce0fa4959c48b0177b50768\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a8a3727c8de39e681ce0fa4959c48b0177b50768\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/a8a3727c8de39e681ce0fa4959c48b0177b50768\"}]},{\"sha\":\"a8a3727c8de39e681ce0fa4959c48b0177b50768\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T12:45:55Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T12:45:55Z\"},\"message\":\"Updated test suite with py.test\\n\\n- added helpers module to factorise tests\\n- updated gitlab code for auth in two steps\\n- updated github tests and added gitlab tests suite\\n- updated cassettes\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"dd1611c2188c298e28186f863118f180276234ce\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/dd1611c2188c298e28186f863118f180276234ce\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/a8a3727c8de39e681ce0fa4959c48b0177b50768\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a8a3727c8de39e681ce0fa4959c48b0177b50768\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/a8a3727c8de39e681ce0fa4959c48b0177b50768\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a8a3727c8de39e681ce0fa4959c48b0177b50768/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"6fb7162fc9e095fb3d559e06597179ea24267cc2\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/6fb7162fc9e095fb3d559e06597179ea24267cc2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/6fb7162fc9e095fb3d559e06597179ea24267cc2\"}]},{\"sha\":\"6fb7162fc9e095fb3d559e06597179ea24267cc2\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T09:56:37Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T09:56:37Z\"},\"message\":\"Simplified colourisation for logging\\n\\nSimplified colourisation for logging\",\"tree\":{\"sha\":\"d4a7fed38ff216e09f860eb75bda14f43c8d9817\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/d4a7fed38ff216e09f860eb75bda14f43c8d9817\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/6fb7162fc9e095fb3d559e06597179ea24267cc2\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/6fb7162fc9e095fb3d559e06597179ea24267cc2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/6fb7162fc9e095fb3d559e06597179ea24267cc2\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/6fb7162fc9e095fb3d559e06597179ea24267cc2/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"76a6d59d451c70b1a628617e747122b18131c80c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/76a6d59d451c70b1a628617e747122b18131c80c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/76a6d59d451c70b1a628617e747122b18131c80c\"}]},{\"sha\":\"76a6d59d451c70b1a628617e747122b18131c80c\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T09:55:20Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T09:55:20Z\"},\"message\":\"Simplified colourisation for logging\",\"tree\":{\"sha\":\"333ed4077253885e3755a7b6c59d3639c279f022\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/333ed4077253885e3755a7b6c59d3639c279f022\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/76a6d59d451c70b1a628617e747122b18131c80c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/76a6d59d451c70b1a628617e747122b18131c80c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/76a6d59d451c70b1a628617e747122b18131c80c\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/76a6d59d451c70b1a628617e747122b18131c80c/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"5199e55ae87ffaefd75075eb5e1efe9617a3db71\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5199e55ae87ffaefd75075eb5e1efe9617a3db71\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5199e55ae87ffaefd75075eb5e1efe9617a3db71\"}]},{\"sha\":\"5199e55ae87ffaefd75075eb5e1efe9617a3db71\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T03:04:24Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T03:04:24Z\"},\"message\":\"Updated tests with refactoring\\n==============\",\"tree\":{\"sha\":\"f3ae00f4e0ba4055fdae619d00886a227a5f1f89\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f3ae00f4e0ba4055fdae619d00886a227a5f1f89\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/5199e55ae87ffaefd75075eb5e1efe9617a3db71\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5199e55ae87ffaefd75075eb5e1efe9617a3db71\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5199e55ae87ffaefd75075eb5e1efe9617a3db71\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5199e55ae87ffaefd75075eb5e1efe9617a3db71/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"79d65ae024ecf896c1cd9314ecb6077105746257\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/79d65ae024ecf896c1cd9314ecb6077105746257\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/79d65ae024ecf896c1cd9314ecb6077105746257\"}]},{\"sha\":\"79d65ae024ecf896c1cd9314ecb6077105746257\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T02:55:42Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T02:55:42Z\"},\"message\":\"Refactored module services for more elegant autoloading\\n\\n- renamed git_repo.services.base into git_repo.services.service\\n- moved all services modules from git_repo.services\\nto git_repo.services.ext\\n- added autoload scheme in git_repo.services.ext.__init__\\n- added a bit of documentation and a log point in services\",\"tree\":{\"sha\":\"f0543179ef7fcb3f0ebbce661a92a157499f292f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f0543179ef7fcb3f0ebbce661a92a157499f292f\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/79d65ae024ecf896c1cd9314ecb6077105746257\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/79d65ae024ecf896c1cd9314ecb6077105746257\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/79d65ae024ecf896c1cd9314ecb6077105746257\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/79d65ae024ecf896c1cd9314ecb6077105746257/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"2f5cc11140153fd19cc39b5923196cd85df1fc3a\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2f5cc11140153fd19cc39b5923196cd85df1fc3a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2f5cc11140153fd19cc39b5923196cd85df1fc3a\"}]},{\"sha\":\"2f5cc11140153fd19cc39b5923196cd85df1fc3a\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-25T00:13:39Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-25T00:13:39Z\"},\"message\":\"Updated .gitignore\",\"tree\":{\"sha\":\"be3166d2fe4c99dd1a558837cc1acd20698f9bab\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/be3166d2fe4c99dd1a558837cc1acd20698f9bab\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/2f5cc11140153fd19cc39b5923196cd85df1fc3a\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2f5cc11140153fd19cc39b5923196cd85df1fc3a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2f5cc11140153fd19cc39b5923196cd85df1fc3a\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2f5cc11140153fd19cc39b5923196cd85df1fc3a/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"683036724a1c0f2592952047f19877990820c8d8\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/683036724a1c0f2592952047f19877990820c8d8\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/683036724a1c0f2592952047f19877990820c8d8\"}]},{\"sha\":\"683036724a1c0f2592952047f19877990820c8d8\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-25T00:13:06Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-25T00:13:06Z\"},\"message\":\"Added py.test support with betamax for handling unit tests (removed old tests)\\n\\n- removed older tests\\n- disabled tox testing for the time being\\n- added a few cassettes\\n\\n`/!\\\\` Testing is still WIP !!!\",\"tree\":{\"sha\":\"bd226d3ba5a54874f26d40e91bc4fdc8c49775ed\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/bd226d3ba5a54874f26d40e91bc4fdc8c49775ed\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/683036724a1c0f2592952047f19877990820c8d8\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/683036724a1c0f2592952047f19877990820c8d8\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/683036724a1c0f2592952047f19877990820c8d8\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/683036724a1c0f2592952047f19877990820c8d8/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"869d37ebba547d8b58b25f5b5caa507461791137\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/869d37ebba547d8b58b25f5b5caa507461791137\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/869d37ebba547d8b58b25f5b5caa507461791137\"}]},{\"sha\":\"869d37ebba547d8b58b25f5b5caa507461791137\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-25T00:10:59Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-25T00:10:59Z\"},\"message\":\"Fixed a few github bugs, and enabled two steps auth for github\\n\\n- Improved error reporting\\n- Fixed self user handling (through self.username)\",\"tree\":{\"sha\":\"661bf0f77f08e9ee95e25634bb043ff96b561106\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/661bf0f77f08e9ee95e25634bb043ff96b561106\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/869d37ebba547d8b58b25f5b5caa507461791137\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/869d37ebba547d8b58b25f5b5caa507461791137\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/869d37ebba547d8b58b25f5b5caa507461791137\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/869d37ebba547d8b58b25f5b5caa507461791137/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"71282a24f12ab02a461a73eede4f823d6db9da1b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/71282a24f12ab02a461a73eede4f823d6db9da1b\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/71282a24f12ab02a461a73eede4f823d6db9da1b\"}]},{\"sha\":\"71282a24f12ab02a461a73eede4f823d6db9da1b\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T18:36:48Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T18:36:48Z\"},\"message\":\"Updated classifiers in setup.py\",\"tree\":{\"sha\":\"25f8c64e572e7f4e8f68744b413a4db8529fbf33\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/25f8c64e572e7f4e8f68744b413a4db8529fbf33\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/71282a24f12ab02a461a73eede4f823d6db9da1b\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/71282a24f12ab02a461a73eede4f823d6db9da1b\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/71282a24f12ab02a461a73eede4f823d6db9da1b\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/71282a24f12ab02a461a73eede4f823d6db9da1b/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"78ae85beec91382b981930225ae23a4acbcae5dd\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/78ae85beec91382b981930225ae23a4acbcae5dd\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/78ae85beec91382b981930225ae23a4acbcae5dd\"}]},{\"sha\":\"78ae85beec91382b981930225ae23a4acbcae5dd\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T18:04:26Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T18:04:26Z\"},\"message\":\"Fixed error handling of lack of privatekey for bitbucket\",\"tree\":{\"sha\":\"d4f714a0c88d3d350fc0aca5371b33a04d7cc760\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/d4f714a0c88d3d350fc0aca5371b33a04d7cc760\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/78ae85beec91382b981930225ae23a4acbcae5dd\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/78ae85beec91382b981930225ae23a4acbcae5dd\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/78ae85beec91382b981930225ae23a4acbcae5dd\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/78ae85beec91382b981930225ae23a4acbcae5dd/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\"}]},{\"sha\":\"1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T18:02:28Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T18:02:28Z\"},\"message\":\"Fixed connection to github without a private key error.\",\"tree\":{\"sha\":\"e7d1edb2b4efdf843cc9b8a968fc89a4f43ed5c9\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/e7d1edb2b4efdf843cc9b8a968fc89a4f43ed5c9\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"c28265f252cbd18f053075a25ebba1b36ee60e40\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/c28265f252cbd18f053075a25ebba1b36ee60e40\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/c28265f252cbd18f053075a25ebba1b36ee60e40\"}]},{\"sha\":\"c28265f252cbd18f053075a25ebba1b36ee60e40\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:55:47Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:55:47Z\"},\"message\":\"updated README\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"3db962a259edc70a51999883b3d380bfbbaaa4a4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/3db962a259edc70a51999883b3d380bfbbaaa4a4\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/c28265f252cbd18f053075a25ebba1b36ee60e40\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/c28265f252cbd18f053075a25ebba1b36ee60e40\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/c28265f252cbd18f053075a25ebba1b36ee60e40\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/c28265f252cbd18f053075a25ebba1b36ee60e40/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\"}]},{\"sha\":\"88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:53:03Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:53:03Z\"},\"message\":\"Added tests\",\"tree\":{\"sha\":\"f8a52456ce59f48ef0eed87d7c1ac31792f53327\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f8a52456ce59f48ef0eed87d7c1ac31792f53327\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"5832a85118061fec71ec832ea97e9e87311dbf94\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5832a85118061fec71ec832ea97e9e87311dbf94\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5832a85118061fec71ec832ea97e9e87311dbf94\"}]},{\"sha\":\"5832a85118061fec71ec832ea97e9e87311dbf94\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:51:17Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:51:17Z\"},\"message\":\"Added support for setup.py dist_clean command\\n\\n- to remove all data left over by buildout\",\"tree\":{\"sha\":\"e0025429d05a832beae974e619a787351baf402b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/e0025429d05a832beae974e619a787351baf402b\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/5832a85118061fec71ec832ea97e9e87311dbf94\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5832a85118061fec71ec832ea97e9e87311dbf94\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5832a85118061fec71ec832ea97e9e87311dbf94\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5832a85118061fec71ec832ea97e9e87311dbf94/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"d13433fb76c748a9dde61fcaa8864945316e0e77\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d13433fb76c748a9dde61fcaa8864945316e0e77\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d13433fb76c748a9dde61fcaa8864945316e0e77\"}]},{\"sha\":\"d13433fb76c748a9dde61fcaa8864945316e0e77\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:50:12Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:50:12Z\"},\"message\":\"Bugfixes in gitlab support\\n\\n- added .auth() method call to generate .user member\\n- fixed prototype of .create() method\\n- improved request error handling\",\"tree\":{\"sha\":\"cc94076f95cec48787ec0fcaf120032597963ed8\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/cc94076f95cec48787ec0fcaf120032597963ed8\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/d13433fb76c748a9dde61fcaa8864945316e0e77\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d13433fb76c748a9dde61fcaa8864945316e0e77\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d13433fb76c748a9dde61fcaa8864945316e0e77\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d13433fb76c748a9dde61fcaa8864945316e0e77/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\"}]},{\"sha\":\"9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:48:16Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:48:16Z\"},\"message\":\"Bugfixes for bitbucket API support\\n\\n- improved error handling (using monkey patched version)\\n- using good username attribute\",\"tree\":{\"sha\":\"2cdbcf163704ccef7855bb3035a254c7614f975d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/2cdbcf163704ccef7855bb3035a254c7614f975d\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"dacb72f9e8b320cdafbdca73440a00395d502b40\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/dacb72f9e8b320cdafbdca73440a00395d502b40\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/dacb72f9e8b320cdafbdca73440a00395d502b40\"}]},{\"sha\":\"dacb72f9e8b320cdafbdca73440a00395d502b40\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:47:16Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:47:16Z\"},\"message\":\"Fixed support of the open command\\n\\n- added ability for RepositoryService to be instancied without repository\\n- parsing main configuration when so happens\\n- connection is only done when a repository is given\",\"tree\":{\"sha\":\"f6f371f89a8510839ca36845838e87485fe7ba38\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f6f371f89a8510839ca36845838e87485fe7ba38\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/dacb72f9e8b320cdafbdca73440a00395d502b40\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/dacb72f9e8b320cdafbdca73440a00395d502b40\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/dacb72f9e8b320cdafbdca73440a00395d502b40\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/dacb72f9e8b320cdafbdca73440a00395d502b40/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\"}]},{\"sha\":\"40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:44:33Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:44:33Z\"},\"message\":\"Added path options support\\n\\n- make the --path option being taken into account\\n- added support for several commands\",\"tree\":{\"sha\":\"6d47debe6f954ecfe195004849a6cedc50d59c2e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/6d47debe6f954ecfe195004849a6cedc50d59c2e\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"5b3c5a8752b090aaf62bc93c72003547dc4661b3\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5b3c5a8752b090aaf62bc93c72003547dc4661b3\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5b3c5a8752b090aaf62bc93c72003547dc4661b3\"}]},{\"sha\":\"5b3c5a8752b090aaf62bc93c72003547dc4661b3\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:40:27Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:40:27Z\"},\"message\":\"Improved verbosity handling\",\"tree\":{\"sha\":\"36c1d624460cf118262c9c979b7d61ff45b7632b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/36c1d624460cf118262c9c979b7d61ff45b7632b\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/5b3c5a8752b090aaf62bc93c72003547dc4661b3\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5b3c5a8752b090aaf62bc93c72003547dc4661b3\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5b3c5a8752b090aaf62bc93c72003547dc4661b3\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5b3c5a8752b090aaf62bc93c72003547dc4661b3/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"835c1cf37986522f5f7b95d606e16735c1042e9f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/835c1cf37986522f5f7b95d606e16735c1042e9f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/835c1cf37986522f5f7b95d606e16735c1042e9f\"}]},{\"sha\":\"835c1cf37986522f5f7b95d606e16735c1042e9f\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:36:57Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:36:57Z\"},\"message\":\"Several bug fixes\\n\\n- fixed missing dependency on progress\\n- fixed wrong argument passing to service methods\\n- fixed forgotten import in repo (misssing exception)\\n- fixed typo in --help\",\"tree\":{\"sha\":\"99ac21c4c9bcbfca1f567b83ba54382693a945b4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/99ac21c4c9bcbfca1f567b83ba54382693a945b4\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/835c1cf37986522f5f7b95d606e16735c1042e9f\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/835c1cf37986522f5f7b95d606e16735c1042e9f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/835c1cf37986522f5f7b95d606e16735c1042e9f\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/835c1cf37986522f5f7b95d606e16735c1042e9f/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"9bd6477cd3069a0968743510ed464dc1a37a75b7\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9bd6477cd3069a0968743510ed464dc1a37a75b7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9bd6477cd3069a0968743510ed464dc1a37a75b7\"}]},{\"sha\":\"9bd6477cd3069a0968743510ed464dc1a37a75b7\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T13:40:59Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T13:40:59Z\"},\"message\":\"Refactored exceptions models\\n\\n- Added exceptions module with custom exceptions\\n- Changed all barebone Exceptions into custom exceptions\",\"tree\":{\"sha\":\"97268dc7bae48f81fcc2e6cf62dcb5f4cae5cc04\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/97268dc7bae48f81fcc2e6cf62dcb5f4cae5cc04\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/9bd6477cd3069a0968743510ed464dc1a37a75b7\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9bd6477cd3069a0968743510ed464dc1a37a75b7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9bd6477cd3069a0968743510ed464dc1a37a75b7\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9bd6477cd3069a0968743510ed464dc1a37a75b7/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"9875c8570312c4f34c6ee34a42b9732120db8433\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9875c8570312c4f34c6ee34a42b9732120db8433\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9875c8570312c4f34c6ee34a42b9732120db8433\"}]},{\"sha\":\"9875c8570312c4f34c6ee34a42b9732120db8433\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T13:09:20Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T13:39:13Z\"},\"message\":\"Added missing virtual method connect on RepositoryService\",\"tree\":{\"sha\":\"c98c5d0f8d8a55403f405a703e9e53b59de5f81e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/c98c5d0f8d8a55403f405a703e9e53b59de5f81e\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/9875c8570312c4f34c6ee34a42b9732120db8433\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9875c8570312c4f34c6ee34a42b9732120db8433\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9875c8570312c4f34c6ee34a42b9732120db8433\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9875c8570312c4f34c6ee34a42b9732120db8433/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\"}]},{\"sha\":\"9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T11:10:47Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T11:10:47Z\"},\"message\":\"Fixed typo\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"719936123c065c7175303c7bb1c51b4d34e9b60b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/719936123c065c7175303c7bb1c51b4d34e9b60b\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"f51953ae0dc048f88371d1dc4d0828936b5c7128\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f51953ae0dc048f88371d1dc4d0828936b5c7128\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f51953ae0dc048f88371d1dc4d0828936b5c7128\"}]},{\"sha\":\"f51953ae0dc048f88371d1dc4d0828936b5c7128\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T11:09:26Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T11:09:26Z\"},\"message\":\"Made impossible to have multiple times the same URL in the 'all' remote.\\n\\n- Monkey patched a missing method on remotes for python-git\",\"tree\":{\"sha\":\"a9d172b795d512ab8019ffae32704a895acb1d72\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/a9d172b795d512ab8019ffae32704a895acb1d72\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/f51953ae0dc048f88371d1dc4d0828936b5c7128\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f51953ae0dc048f88371d1dc4d0828936b5c7128\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f51953ae0dc048f88371d1dc4d0828936b5c7128\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f51953ae0dc048f88371d1dc4d0828936b5c7128/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\"}]},{\"sha\":\"f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T10:19:29Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T10:19:29Z\"},\"message\":\"Homogeneisation of the API\\nImproved cosmetics\",\"tree\":{\"sha\":\"49bce35b549815c6148a9112fafa35445af44a8b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/49bce35b549815c6148a9112fafa35445af44a8b\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\"}]},{\"sha\":\"d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:08:02Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:08:02Z\"},\"message\":\"Updated README with progress on TODO list\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"f5b584e7e9c442b5125b981f14f300442e02a1e9\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f5b584e7e9c442b5125b981f14f300442e02a1e9\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\"}]},{\"sha\":\"0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:06:59Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:06:59Z\"},\"message\":\"Version bump to 1.4\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"ed32ba98448a51c4e62668726f6d420b82df6b02\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/ed32ba98448a51c4e62668726f6d420b82df6b02\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/0d55d0f5eca5507f42b318cc399ddfb4ca50a07c/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\"}]},{\"sha\":\"d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:05:59Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:05:59Z\"},\"message\":\"Fixed monkey_patch() method call in bitbucket\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"20274d8d3337c12ba72659745272415f9cf3ba05\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/20274d8d3337c12ba72659745272415f9cf3ba05\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"b59683a973a1ae7356c1487521bfeefc34da3198\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b59683a973a1ae7356c1487521bfeefc34da3198\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b59683a973a1ae7356c1487521bfeefc34da3198\"}]},{\"sha\":\"b59683a973a1ae7356c1487521bfeefc34da3198\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:02:21Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:02:21Z\"},\"message\":\"Fixed wrong member when adding remote when forking on github\",\"tree\":{\"sha\":\"332b6968798e3b960b886a1aad8714edbb4f244f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/332b6968798e3b960b886a1aad8714edbb4f244f\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/b59683a973a1ae7356c1487521bfeefc34da3198\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b59683a973a1ae7356c1487521bfeefc34da3198\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b59683a973a1ae7356c1487521bfeefc34da3198\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b59683a973a1ae7356c1487521bfeefc34da3198/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"aa77018ac63a8a992ef87daecf2f343fcd36cbf3\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/aa77018ac63a8a992ef87daecf2f343fcd36cbf3\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/aa77018ac63a8a992ef87daecf2f343fcd36cbf3\"}]},{\"sha\":\"aa77018ac63a8a992ef87daecf2f343fcd36cbf3\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:01:53Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:01:53Z\"},\"message\":\"Fixed exception logging when in verbose mode\",\"tree\":{\"sha\":\"28495c25a9ccccd44959389b4af86ec93b85a8da\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/28495c25a9ccccd44959389b4af86ec93b85a8da\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/aa77018ac63a8a992ef87daecf2f343fcd36cbf3\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/aa77018ac63a8a992ef87daecf2f343fcd36cbf3\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/aa77018ac63a8a992ef87daecf2f343fcd36cbf3\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/aa77018ac63a8a992ef87daecf2f343fcd36cbf3/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"47d5131907dc70377e2ac5dca43f07e00333c4a4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/47d5131907dc70377e2ac5dca43f07e00333c4a4\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/47d5131907dc70377e2ac5dca43f07e00333c4a4\"}]},{\"sha\":\"47d5131907dc70377e2ac5dca43f07e00333c4a4\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:56:33Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:56:33Z\"},\"message\":\"Fixed bug in gitlab\u2192fork\",\"tree\":{\"sha\":\"3f20b44201bfe59799504c1033b82a758021facc\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/3f20b44201bfe59799504c1033b82a758021facc\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/47d5131907dc70377e2ac5dca43f07e00333c4a4\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/47d5131907dc70377e2ac5dca43f07e00333c4a4\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/47d5131907dc70377e2ac5dca43f07e00333c4a4\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/47d5131907dc70377e2ac5dca43f07e00333c4a4/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"87bb97820e6a6b35d73194385f7d3499c5c5b6e6\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/87bb97820e6a6b35d73194385f7d3499c5c5b6e6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/87bb97820e6a6b35d73194385f7d3499c5c5b6e6\"}]},{\"sha\":\"87bb97820e6a6b35d73194385f7d3499c5c5b6e6\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:56:14Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:56:14Z\"},\"message\":\"Improved logging handling\",\"tree\":{\"sha\":\"11d56c10e884ef0693043f324e8a516a5e9adb76\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/11d56c10e884ef0693043f324e8a516a5e9adb76\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/87bb97820e6a6b35d73194385f7d3499c5c5b6e6\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/87bb97820e6a6b35d73194385f7d3499c5c5b6e6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/87bb97820e6a6b35d73194385f7d3499c5c5b6e6\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/87bb97820e6a6b35d73194385f7d3499c5c5b6e6/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"73833fa6865d524e3b94ad1ad5a8387799697ae6\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/73833fa6865d524e3b94ad1ad5a8387799697ae6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/73833fa6865d524e3b94ad1ad5a8387799697ae6\"}]},{\"sha\":\"73833fa6865d524e3b94ad1ad5a8387799697ae6\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:33:33Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:33:33Z\"},\"message\":\"Improved logging operations\\n\\n- Made possible to show all git commands with -vv\",\"tree\":{\"sha\":\"28176d3da78a1c9e585172a44505418dd5c07354\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/28176d3da78a1c9e585172a44505418dd5c07354\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/73833fa6865d524e3b94ad1ad5a8387799697ae6\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/73833fa6865d524e3b94ad1ad5a8387799697ae6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/73833fa6865d524e3b94ad1ad5a8387799697ae6\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/73833fa6865d524e3b94ad1ad5a8387799697ae6/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"55f03f263c42089474aa7da962427b1c939c0f88\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/55f03f263c42089474aa7da962427b1c939c0f88\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/55f03f263c42089474aa7da962427b1c939c0f88\"}]},{\"sha\":\"55f03f263c42089474aa7da962427b1c939c0f88\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:32:53Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:32:53Z\"},\"message\":\"Fixed issue happening when ran within an existing repository\\n\\n- made sure that GIT_WORK_TREE and GIT_DIR are unset when running git_repo\",\"tree\":{\"sha\":\"c741c9cd407ad567f4c7a4217129074d45d24aa7\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/c741c9cd407ad567f4c7a4217129074d45d24aa7\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/55f03f263c42089474aa7da962427b1c939c0f88\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/55f03f263c42089474aa7da962427b1c939c0f88\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/55f03f263c42089474aa7da962427b1c939c0f88\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/55f03f263c42089474aa7da962427b1c939c0f88/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"dc21007d72698795949f2cfd4b6cd3adb0188a02\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/dc21007d72698795949f2cfd4b6cd3adb0188a02\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/dc21007d72698795949f2cfd4b6cd3adb0188a02\"}]},{\"sha\":\"dc21007d72698795949f2cfd4b6cd3adb0188a02\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T00:49:33Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T00:49:33Z\"},\"message\":\"Refactored project to be split into several modules\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"4190d7ed601c4ad717df1b0aa8190f07a9766168\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/4190d7ed601c4ad717df1b0aa8190f07a9766168\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/dc21007d72698795949f2cfd4b6cd3adb0188a02\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/dc21007d72698795949f2cfd4b6cd3adb0188a02\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/dc21007d72698795949f2cfd4b6cd3adb0188a02\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/dc21007d72698795949f2cfd4b6cd3adb0188a02/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"51fdbb054ce66d13a483a892559f8a6586a7ad65\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/51fdbb054ce66d13a483a892559f8a6586a7ad65\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/51fdbb054ce66d13a483a892559f8a6586a7ad65\"}]},{\"sha\":\"51fdbb054ce66d13a483a892559f8a6586a7ad65\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T23:13:56Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T23:13:56Z\"},\"message\":\"Added guards against python2\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"354f2945d3930711b6f2928fa67d5d47c824d85e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/354f2945d3930711b6f2928fa67d5d47c824d85e\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/51fdbb054ce66d13a483a892559f8a6586a7ad65\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/51fdbb054ce66d13a483a892559f8a6586a7ad65\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/51fdbb054ce66d13a483a892559f8a6586a7ad65\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/51fdbb054ce66d13a483a892559f8a6586a7ad65/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"71447eebff3abaab7f8614af7a47ef4a4a185527\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/71447eebff3abaab7f8614af7a47ef4a4a185527\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/71447eebff3abaab7f8614af7a47ef4a4a185527\"}]},{\"sha\":\"71447eebff3abaab7f8614af7a47ef4a4a185527\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T23:10:26Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T23:10:26Z\"},\"message\":\"updated readme with links\",\"tree\":{\"sha\":\"43df3aca6d6fe994e884b2bfd0eb478478e5303e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/43df3aca6d6fe994e884b2bfd0eb478478e5303e\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/71447eebff3abaab7f8614af7a47ef4a4a185527\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/71447eebff3abaab7f8614af7a47ef4a4a185527\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/71447eebff3abaab7f8614af7a47ef4a4a185527\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/71447eebff3abaab7f8614af7a47ef4a4a185527/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"04ff710745a43f8d04aae0696821b8a5bb20f0fc\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/04ff710745a43f8d04aae0696821b8a5bb20f0fc\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/04ff710745a43f8d04aae0696821b8a5bb20f0fc\"}]},{\"sha\":\"04ff710745a43f8d04aae0696821b8a5bb20f0fc\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T23:00:12Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T23:00:12Z\"},\"message\":\"updated readme\",\"tree\":{\"sha\":\"f98982df810b83c3824c2a203e0f4f2c7a86ff70\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f98982df810b83c3824c2a203e0f4f2c7a86ff70\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/04ff710745a43f8d04aae0696821b8a5bb20f0fc\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/04ff710745a43f8d04aae0696821b8a5bb20f0fc\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/04ff710745a43f8d04aae0696821b8a5bb20f0fc\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/04ff710745a43f8d04aae0696821b8a5bb20f0fc/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"88842f2e2dfae5d7048319cd4354287d20dc21d3\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88842f2e2dfae5d7048319cd4354287d20dc21d3\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88842f2e2dfae5d7048319cd4354287d20dc21d3\"}]},{\"sha\":\"88842f2e2dfae5d7048319cd4354287d20dc21d3\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T22:44:20Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T22:44:20Z\"},\"message\":\"Updated README and version bump to 1.3\",\"tree\":{\"sha\":\"5f1c1349902fa5838eafb39793950e6138784b1a\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/5f1c1349902fa5838eafb39793950e6138784b1a\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/88842f2e2dfae5d7048319cd4354287d20dc21d3\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88842f2e2dfae5d7048319cd4354287d20dc21d3\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88842f2e2dfae5d7048319cd4354287d20dc21d3\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88842f2e2dfae5d7048319cd4354287d20dc21d3/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"309826ce0116c2ca0392ec8ba8312b5c8b171009\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/309826ce0116c2ca0392ec8ba8312b5c8b171009\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/309826ce0116c2ca0392ec8ba8312b5c8b171009\"}]},{\"sha\":\"309826ce0116c2ca0392ec8ba8312b5c8b171009\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T22:38:22Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T22:38:22Z\"},\"message\":\"Added actions fork and delete, enabled proper logging, fixed remote URL handling\\n\\n- changed url into fqdn and added url handling methods\\n- improved exception handling,\\n- improved verbosity levels\\n- added monkey patching of git module to add support of changing URL of a remote\\n- added monkey patching of bitbucket-api, because get/delete/fork were missing,\\n and HTTP return values were useless \u2014 read unparseable.\\n- added delete actions for the three services, with verbose confirmation\\n- added fork actions for the three services\\n- added verbosity handling\\n- added return value support\\n\\nSorry for this lengthy commit, I'll do my best for this not to happen again \u2665\",\"tree\":{\"sha\":\"b181b023689bf23a2f4f8bed58b14871aa363546\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/b181b023689bf23a2f4f8bed58b14871aa363546\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/309826ce0116c2ca0392ec8ba8312b5c8b171009\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/309826ce0116c2ca0392ec8ba8312b5c8b171009\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/309826ce0116c2ca0392ec8ba8312b5c8b171009\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/309826ce0116c2ca0392ec8ba8312b5c8b171009/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"88cf5a14803ff35ff735ebcdc94ca8edd4698d91\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88cf5a14803ff35ff735ebcdc94ca8edd4698d91\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88cf5a14803ff35ff735ebcdc94ca8edd4698d91\"}]},{\"sha\":\"88cf5a14803ff35ff735ebcdc94ca8edd4698d91\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T12:42:20Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T12:42:20Z\"},\"message\":\"Added all remote support and fixed URL handling\\n\\n- added `all` remote that gets updated with each new remote URL, so that `git push all`\\nsends to all remotes ;\\n- monkey patching git module to fix the missing set-url method\\n- fixed https only URLs, by using only fqdn in the configuration, and format it\\ncontextually\",\"tree\":{\"sha\":\"2a5dae33e433932125c11be934ce16ef848771e2\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/2a5dae33e433932125c11be934ce16ef848771e2\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/88cf5a14803ff35ff735ebcdc94ca8edd4698d91\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88cf5a14803ff35ff735ebcdc94ca8edd4698d91\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88cf5a14803ff35ff735ebcdc94ca8edd4698d91\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88cf5a14803ff35ff735ebcdc94ca8edd4698d91/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"b01009a9c685b2dc3af9338f3ec3d0eafbce1545\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b01009a9c685b2dc3af9338f3ec3d0eafbce1545\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b01009a9c685b2dc3af9338f3ec3d0eafbce1545\"}]},{\"sha\":\"b01009a9c685b2dc3af9338f3ec3d0eafbce1545\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T11:16:47Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T11:16:47Z\"},\"message\":\"Added support for `all` remote ref\\n\\n- monkey patching of git module to add the `set_url` method\",\"tree\":{\"sha\":\"e957e216fbb40bfec01645e78fd70a4185f66aab\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/e957e216fbb40bfec01645e78fd70a4185f66aab\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/b01009a9c685b2dc3af9338f3ec3d0eafbce1545\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b01009a9c685b2dc3af9338f3ec3d0eafbce1545\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b01009a9c685b2dc3af9338f3ec3d0eafbce1545\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b01009a9c685b2dc3af9338f3ec3d0eafbce1545/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\"}]},{\"sha\":\"f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T22:26:50Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T22:26:50Z\"},\"message\":\"Updated gitignore with new stuff to hide under the carpet!\",\"tree\":{\"sha\":\"649d43f6d335f39f625c8d7164b0b05a7ed32ce5\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/649d43f6d335f39f625c8d7164b0b05a7ed32ce5\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f80e175c7a98bfd0caabc68c21cdd5fe9b46110b/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"32b70f5519ce24f6a87bae59a7056e7b632c4297\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/32b70f5519ce24f6a87bae59a7056e7b632c4297\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/32b70f5519ce24f6a87bae59a7056e7b632c4297\"}]},{\"sha\":\"32b70f5519ce24f6a87bae59a7056e7b632c4297\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T22:25:27Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T22:25:27Z\"},\"message\":\"Updated README and versions bump to 1.2\",\"tree\":{\"sha\":\"4101619632af945ae4fbb1c602ad5b9f6e589732\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/4101619632af945ae4fbb1c602ad5b9f6e589732\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/32b70f5519ce24f6a87bae59a7056e7b632c4297\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/32b70f5519ce24f6a87bae59a7056e7b632c4297\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/32b70f5519ce24f6a87bae59a7056e7b632c4297\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/32b70f5519ce24f6a87bae59a7056e7b632c4297/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"78fc68b989a817ca4d171f451519a60cd1cc14a4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/78fc68b989a817ca4d171f451519a60cd1cc14a4\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/78fc68b989a817ca4d171f451519a60cd1cc14a4\"}]},{\"sha\":\"78fc68b989a817ca4d171f451519a60cd1cc14a4\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T22:24:44Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T22:24:44Z\"},\"message\":\"Added support for the fork command\\n\\n - Removed debug messages\\n - Added progress bar support for fetch/push (WIP)\\n - Moved imports to global env\\n - Extracted connection to services in connect() method\",\"tree\":{\"sha\":\"8b484319a95232e49fc35ae523f62d3e9db9dc0f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/8b484319a95232e49fc35ae523f62d3e9db9dc0f\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/78fc68b989a817ca4d171f451519a60cd1cc14a4\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/78fc68b989a817ca4d171f451519a60cd1cc14a4\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/78fc68b989a817ca4d171f451519a60cd1cc14a4\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/78fc68b989a817ca4d171f451519a60cd1cc14a4/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"f876a2aee63440d84b5480f0da24794fa4f9dea6\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f876a2aee63440d84b5480f0da24794fa4f9dea6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f876a2aee63440d84b5480f0da24794fa4f9dea6\"}]},{\"sha\":\"f876a2aee63440d84b5480f0da24794fa4f9dea6\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:31:23Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:31:23Z\"},\"message\":\"Fixed typo in setup.py ; version bump to 1.1\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"27af4020d1c145bc65f3add65df71b3a4482602f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/27af4020d1c145bc65f3add65df71b3a4482602f\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/f876a2aee63440d84b5480f0da24794fa4f9dea6\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f876a2aee63440d84b5480f0da24794fa4f9dea6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f876a2aee63440d84b5480f0da24794fa4f9dea6\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f876a2aee63440d84b5480f0da24794fa4f9dea6/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"d49a7411095f07ab8a93c25ea477fda3c4814465\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d49a7411095f07ab8a93c25ea477fda3c4814465\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d49a7411095f07ab8a93c25ea477fda3c4814465\"}]},{\"sha\":\"d49a7411095f07ab8a93c25ea477fda3c4814465\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:25:02Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:25:02Z\"},\"message\":\"Updated todo list in readme\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"2e9b88741e9af4aef4a16dd0d7c75730926c64d3\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/2e9b88741e9af4aef4a16dd0d7c75730926c64d3\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/d49a7411095f07ab8a93c25ea477fda3c4814465\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d49a7411095f07ab8a93c25ea477fda3c4814465\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d49a7411095f07ab8a93c25ea477fda3c4814465\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d49a7411095f07ab8a93c25ea477fda3c4814465/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"93052c16f85254ecee3465a477f140b13c273547\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/93052c16f85254ecee3465a477f140b13c273547\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/93052c16f85254ecee3465a477f140b13c273547\"}]},{\"sha\":\"93052c16f85254ecee3465a477f140b13c273547\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:21:55Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:21:55Z\"},\"message\":\"Added code configuration\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"5457e2bc5224b365dfac53f20d0a1c08bbac9228\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/5457e2bc5224b365dfac53f20d0a1c08bbac9228\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/93052c16f85254ecee3465a477f140b13c273547\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/93052c16f85254ecee3465a477f140b13c273547\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/93052c16f85254ecee3465a477f140b13c273547\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/93052c16f85254ecee3465a477f140b13c273547/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"4e14ae6ca782e552d4e076fc3b9811b0379aa716\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/4e14ae6ca782e552d4e076fc3b9811b0379aa716\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/4e14ae6ca782e552d4e076fc3b9811b0379aa716\"}]},{\"sha\":\"4e14ae6ca782e552d4e076fc3b9811b0379aa716\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:19:52Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:19:52Z\"},\"message\":\"Added base version of the code\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"88a9db1344592f7b5b7e3f26f500db43fbdc8357\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/88a9db1344592f7b5b7e3f26f500db43fbdc8357\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/4e14ae6ca782e552d4e076fc3b9811b0379aa716\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/4e14ae6ca782e552d4e076fc3b9811b0379aa716\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/4e14ae6ca782e552d4e076fc3b9811b0379aa716\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/4e14ae6ca782e552d4e076fc3b9811b0379aa716/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"db1350753778665dea51d8ccc425e31571e23e5c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/db1350753778665dea51d8ccc425e31571e23e5c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/db1350753778665dea51d8ccc425e31571e23e5c\"}]},{\"sha\":\"db1350753778665dea51d8ccc425e31571e23e5c\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:17:49Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:17:49Z\"},\"message\":\"Added build files\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"1880fb076746754ed9b2eaccf90e7ec03003941d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/1880fb076746754ed9b2eaccf90e7ec03003941d\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/db1350753778665dea51d8ccc425e31571e23e5c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/db1350753778665dea51d8ccc425e31571e23e5c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/db1350753778665dea51d8ccc425e31571e23e5c\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/db1350753778665dea51d8ccc425e31571e23e5c/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"97016ee3d0044ba95289cc9a663104ee4289d37a\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/97016ee3d0044ba95289cc9a663104ee4289d37a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/97016ee3d0044ba95289cc9a663104ee4289d37a\"}]},{\"sha\":\"97016ee3d0044ba95289cc9a663104ee4289d37a\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:17:34Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:17:34Z\"},\"message\":\"Initial commit: License and Readme files\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"c1d2244c62883a83018fd28e25e660d7a38e65ea\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/c1d2244c62883a83018fd28e25e660d7a38e65ea\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/97016ee3d0044ba95289cc9a663104ee4289d37a\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/97016ee3d0044ba95289cc9a663104ee4289d37a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/97016ee3d0044ba95289cc9a663104ee4289d37a\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/97016ee3d0044ba95289cc9a663104ee4289d37a/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[]}]" + "string": "[{\"sha\":\"da2d0802fccbec805c5f3ddad5ddc6a3eba54975\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-30T13:00:21Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-30T13:00:21Z\"},\"message\":\"Version bump to v1.5.0\",\"tree\":{\"sha\":\"87bfdb207105df8ce451af1867527b34fd261e43\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/87bfdb207105df8ce451af1867527b34fd261e43\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/da2d0802fccbec805c5f3ddad5ddc6a3eba54975\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/da2d0802fccbec805c5f3ddad5ddc6a3eba54975\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/da2d0802fccbec805c5f3ddad5ddc6a3eba54975\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/da2d0802fccbec805c5f3ddad5ddc6a3eba54975/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\"}]},{\"sha\":\"37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-30T12:41:58Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-30T12:41:58Z\"},\"message\":\"Added more introspection to main() <GITHUB_NAMESPACE>ing and added more asserts/more <GITHUB_NAMESPACE>s to <GITHUB_NAMESPACE>_main\",\"tree\":{\"sha\":\"581d464703f964bc11720e292834d8c1c9949025\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/581d464703f964bc11720e292834d8c1c9949025\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/37a4887a4364ebe19b2f06844d1ef6a919ee2ad8\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/37a4887a4364ebe19b2f06844d1ef6a919ee2ad8/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\"}]},{\"sha\":\"b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-30T12:41:24Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-30T12:41:24Z\"},\"message\":\"Made --clone default to False for fork, added --add to create\",\"tree\":{\"sha\":\"567fa850e5053026f6e237b20acd906af7d546c6\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/567fa850e5053026f6e237b20acd906af7d546c6\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b93d9929d0abdb6f067b574fd1a7ade2ec8f79c9/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\"}]},{\"sha\":\"2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:21:52Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:21:52Z\"},\"message\":\"Updated gitignore\",\"tree\":{\"sha\":\"d43f0a79054c17771c3285418ad1f98cece368cc\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/d43f0a79054c17771c3285418ad1f98cece368cc\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2fc27f12e189c6bfa5806fdd624fae34e39a7cf7\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2fc27f12e189c6bfa5806fdd624fae34e39a7cf7/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"b092f8de31fd7222a898d5b5197dd1899a1e548d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b092f8de31fd7222a898d5b5197dd1899a1e548d\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b092f8de31fd7222a898d5b5197dd1899a1e548d\"}]},{\"sha\":\"b092f8de31fd7222a898d5b5197dd1899a1e548d\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:20:23Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:20:23Z\"},\"message\":\"Added a bunch of pragma no cover in the code.\",\"tree\":{\"sha\":\"43153325026279926f590aa418ac3dc575968d1e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/43153325026279926f590aa418ac3dc575968d1e\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/b092f8de31fd7222a898d5b5197dd1899a1e548d\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b092f8de31fd7222a898d5b5197dd1899a1e548d\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b092f8de31fd7222a898d5b5197dd1899a1e548d\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b092f8de31fd7222a898d5b5197dd1899a1e548d/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"3d0843649b465bff2bf3860b3d726a89c100047f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/3d0843649b465bff2bf3860b3d726a89c100047f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/3d0843649b465bff2bf3860b3d726a89c100047f\"}]},{\"sha\":\"3d0843649b465bff2bf3860b3d726a89c100047f\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:19:38Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:19:38Z\"},\"message\":\"Added missing cassettes (create/already exists)\",\"tree\":{\"sha\":\"c618a8d88baf09adab5b603795e4db0da36e74f8\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/c618a8d88baf09adab5b603795e4db0da36e74f8\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/3d0843649b465bff2bf3860b3d726a89c100047f\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/3d0843649b465bff2bf3860b3d726a89c100047f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/3d0843649b465bff2bf3860b3d726a89c100047f\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/3d0843649b465bff2bf3860b3d726a89c100047f/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"e7951a2bfc4df984fa643e416232acfdb5a899e4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e7951a2bfc4df984fa643e416232acfdb5a899e4\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e7951a2bfc4df984fa643e416232acfdb5a899e4\"}]},{\"sha\":\"e7951a2bfc4df984fa643e416232acfdb5a899e4\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:19:12Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:19:12Z\"},\"message\":\"Added <GITHUB_NAMESPACE> suite for the main() function with mockup of the repository\\n\\nN.B.: might need more assertions\",\"tree\":{\"sha\":\"3ab0c9bf2b2eec5768cea84b02492e14d2263009\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/3ab0c9bf2b2eec5768cea84b02492e14d2263009\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/e7951a2bfc4df984fa643e416232acfdb5a899e4\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e7951a2bfc4df984fa643e416232acfdb5a899e4\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e7951a2bfc4df984fa643e416232acfdb5a899e4\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e7951a2bfc4df984fa643e416232acfdb5a899e4/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"86a2d7a2fca2f48c0e302c9868e34d339d929fdb\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/86a2d7a2fca2f48c0e302c9868e34d339d929fdb\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/86a2d7a2fca2f48c0e302c9868e34d339d929fdb\"}]},{\"sha\":\"86a2d7a2fca2f48c0e302c9868e34d339d929fdb\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:18:10Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:18:10Z\"},\"message\":\"Updated gitlab <GITHUB_NAMESPACE> suite with extra <GITHUB_NAMESPACE> (existing repo error on create)\",\"tree\":{\"sha\":\"64c3fc4d2cd91cf15cfbe3be4d4fb06876cc3f6d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/64c3fc4d2cd91cf15cfbe3be4d4fb06876cc3f6d\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/86a2d7a2fca2f48c0e302c9868e34d339d929fdb\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/86a2d7a2fca2f48c0e302c9868e34d339d929fdb\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/86a2d7a2fca2f48c0e302c9868e34d339d929fdb\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/86a2d7a2fca2f48c0e302c9868e34d339d929fdb/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"30806ab455f8ab926f66e0a70f6d70337536ca07\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/30806ab455f8ab926f66e0a70f6d70337536ca07\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/30806ab455f8ab926f66e0a70f6d70337536ca07\"}]},{\"sha\":\"30806ab455f8ab926f66e0a70f6d70337536ca07\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:17:31Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:17:31Z\"},\"message\":\"Added git mockup facility in helpers\",\"tree\":{\"sha\":\"db6abce2a668faba93f40e0df7ca7c5e3c796c06\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/db6abce2a668faba93f40e0df7ca7c5e3c796c06\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/30806ab455f8ab926f66e0a70f6d70337536ca07\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/30806ab455f8ab926f66e0a70f6d70337536ca07\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/30806ab455f8ab926f66e0a70f6d70337536ca07\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/30806ab455f8ab926f66e0a70f6d70337536ca07/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"8183cea1e57935d58b8dae39931c7119b47057d9\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/8183cea1e57935d58b8dae39931c7119b47057d9\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/8183cea1e57935d58b8dae39931c7119b47057d9\"}]},{\"sha\":\"8183cea1e57935d58b8dae39931c7119b47057d9\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:16:34Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:16:34Z\"},\"message\":\"Improved github <GITHUB_NAMESPACE> suite\\n\\n- added error check for create/already existing repo\\n- removed old imports\",\"tree\":{\"sha\":\"4d80da97f4969015d72ffbd716f5acac0c08a9a8\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/4d80da97f4969015d72ffbd716f5acac0c08a9a8\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/8183cea1e57935d58b8dae39931c7119b47057d9\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/8183cea1e57935d58b8dae39931c7119b47057d9\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/8183cea1e57935d58b8dae39931c7119b47057d9\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/8183cea1e57935d58b8dae39931c7119b47057d9/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\"}]},{\"sha\":\"7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:10:05Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:10:05Z\"},\"message\":\"Simplified call scheme for open() (removed extra conditional)\",\"tree\":{\"sha\":\"4ff8daac796b940f6ff30b557fa7a97077e3ef6d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/4ff8daac796b940f6ff30b557fa7a97077e3ef6d\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/7c68b28a2547d1f43e81c080ab10c1ff6a52bc7c/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"bf8b23d0554b8abd8372832ae3ece729a505d184\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/bf8b23d0554b8abd8372832ae3ece729a505d184\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/bf8b23d0554b8abd8372832ae3ece729a505d184\"}]},{\"sha\":\"bf8b23d0554b8abd8372832ae3ece729a505d184\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:09:27Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:09:27Z\"},\"message\":\"Fixed wrong path to gitconfig file in repositoryservice to load configuration\",\"tree\":{\"sha\":\"576c025c0dd35c354b15b4dcb2f5aabe472c0475\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/576c025c0dd35c354b15b4dcb2f5aabe472c0475\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/bf8b23d0554b8abd8372832ae3ece729a505d184\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/bf8b23d0554b8abd8372832ae3ece729a505d184\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/bf8b23d0554b8abd8372832ae3ece729a505d184\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/bf8b23d0554b8abd8372832ae3ece729a505d184/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\"}]},{\"sha\":\"f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:08:46Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:08:46Z\"},\"message\":\"Fixed handling of more errors for already existing repository in github::create\",\"tree\":{\"sha\":\"511a42944d3bedad2b6afa6c0385436b0b7861f0\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/511a42944d3bedad2b6afa6c0385436b0b7861f0\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f72d0bfc16168e3c01053ca2d2f4489b8d89b0db\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f72d0bfc16168e3c01053ca2d2f4489b8d89b0db/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"21ab3fcba20d76f404694582e28835471ec38ac0\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/21ab3fcba20d76f404694582e28835471ec38ac0\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/21ab3fcba20d76f404694582e28835471ec38ac0\"}]},{\"sha\":\"21ab3fcba20d76f404694582e28835471ec38ac0\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:06:28Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T20:06:28Z\"},\"message\":\"Improved error handling of bad repository in fork action in main function\",\"tree\":{\"sha\":\"da41332a7b4ccd611c3bdc33c4b09bd2c7930268\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/da41332a7b4ccd611c3bdc33c4b09bd2c7930268\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/21ab3fcba20d76f404694582e28835471ec38ac0\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/21ab3fcba20d76f404694582e28835471ec38ac0\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/21ab3fcba20d76f404694582e28835471ec38ac0\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/21ab3fcba20d76f404694582e28835471ec38ac0/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"2c752047ae1949e38227d8192bc583a8460c2107\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2c752047ae1949e38227d8192bc583a8460c2107\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2c752047ae1949e38227d8192bc583a8460c2107\"}]},{\"sha\":\"2c752047ae1949e38227d8192bc583a8460c2107\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:04:53Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:04:53Z\"},\"message\":\"Missed gitlab <GITHUB_NAMESPACE> suite cassette added\",\"tree\":{\"sha\":\"ff942864337dfe5cfd6e7a84e54261f0a812627c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/ff942864337dfe5cfd6e7a84e54261f0a812627c\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/2c752047ae1949e38227d8192bc583a8460c2107\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2c752047ae1949e38227d8192bc583a8460c2107\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2c752047ae1949e38227d8192bc583a8460c2107\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2c752047ae1949e38227d8192bc583a8460c2107/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"e7619a91b486ddda8ef26985a351667f7cca1ebf\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e7619a91b486ddda8ef26985a351667f7cca1ebf\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e7619a91b486ddda8ef26985a351667f7cca1ebf\"}]},{\"sha\":\"e7619a91b486ddda8ef26985a351667f7cca1ebf\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:04:06Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:04:06Z\"},\"message\":\"Added and updated cassettes for gitlab and bitbucket <GITHUB_NAMESPACE>s suites\",\"tree\":{\"sha\":\"8e4e74dd7a22dad5b13285bbdf1ebaf64e06066b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/8e4e74dd7a22dad5b13285bbdf1ebaf64e06066b\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/e7619a91b486ddda8ef26985a351667f7cca1ebf\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e7619a91b486ddda8ef26985a351667f7cca1ebf\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e7619a91b486ddda8ef26985a351667f7cca1ebf\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e7619a91b486ddda8ef26985a351667f7cca1ebf/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"5421a55f5ab751fdaab66154ac41988da54b4aa0\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5421a55f5ab751fdaab66154ac41988da54b4aa0\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5421a55f5ab751fdaab66154ac41988da54b4aa0\"}]},{\"sha\":\"5421a55f5ab751fdaab66154ac41988da54b4aa0\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:02:37Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:02:37Z\"},\"message\":\"Updated bitbucket <GITHUB_NAMESPACE>s suite\",\"tree\":{\"sha\":\"8d15028aa66357d6eb0c7dcfae85c78d4bddefd0\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/8d15028aa66357d6eb0c7dcfae85c78d4bddefd0\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/5421a55f5ab751fdaab66154ac41988da54b4aa0\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5421a55f5ab751fdaab66154ac41988da54b4aa0\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5421a55f5ab751fdaab66154ac41988da54b4aa0\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5421a55f5ab751fdaab66154ac41988da54b4aa0/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\"}]},{\"sha\":\"e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:01:29Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T18:01:29Z\"},\"message\":\"Improved GitRepoTestCase\\n\\n- updated setup\\n- updated fork command (with git mockup)\\n- updated open command\",\"tree\":{\"sha\":\"97f72cdbe055ffe9287f7e2a0f1e3ad7551cf0e1\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/97f72cdbe055ffe9287f7e2a0f1e3ad7551cf0e1\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e2083d5e7e7c5cf40e8725a0ac7234ae0e4c674d/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"a508dd1126d361d7563e4117b49c5e57ff6fa7cb\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a508dd1126d361d7563e4117b49c5e57ff6fa7cb\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/a508dd1126d361d7563e4117b49c5e57ff6fa7cb\"}]},{\"sha\":\"a508dd1126d361d7563e4117b49c5e57ff6fa7cb\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:59:18Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:59:18Z\"},\"message\":\"Fix for ugly call to delete\\n\\n- because of a bug (cf issue 107 of python-gitlab), we need to make an ugly call to delete()\\n\\nhttps://github.com/gpocentek/python-gitlab/issues/107\",\"tree\":{\"sha\":\"bd8c7684980f4c22e5da33b0690c9d5c08444986\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/bd8c7684980f4c22e5da33b0690c9d5c08444986\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/a508dd1126d361d7563e4117b49c5e57ff6fa7cb\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a508dd1126d361d7563e4117b49c5e57ff6fa7cb\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/a508dd1126d361d7563e4117b49c5e57ff6fa7cb\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a508dd1126d361d7563e4117b49c5e57ff6fa7cb/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"a838ed8f58741713fcba248038e64f555c1b67f8\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a838ed8f58741713fcba248038e64f555c1b67f8\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/a838ed8f58741713fcba248038e64f555c1b67f8\"}]},{\"sha\":\"a838ed8f58741713fcba248038e64f555c1b67f8\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:56:36Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:56:36Z\"},\"message\":\"[WIP] Added temporary fix for impossibility to list updated repositories\\n\\nI've removed the exception sent when no repository has been found, because just after\\nthe create action in <GITHUB_NAMESPACE>s, this method always lacks the new repository\",\"tree\":{\"sha\":\"90e1206e21fa8e7b86445e878eb2cc8eb3bbc90f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/90e1206e21fa8e7b86445e878eb2cc8eb3bbc90f\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/a838ed8f58741713fcba248038e64f555c1b67f8\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a838ed8f58741713fcba248038e64f555c1b67f8\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/a838ed8f58741713fcba248038e64f555c1b67f8\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a838ed8f58741713fcba248038e64f555c1b67f8/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"4762547638bc3c4001f561e2d6fd9e19f58b5a95\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/4762547638bc3c4001f561e2d6fd9e19f58b5a95\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/4762547638bc3c4001f561e2d6fd9e19f58b5a95\"}]},{\"sha\":\"4762547638bc3c4001f561e2d6fd9e19f58b5a95\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:54:52Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:54:52Z\"},\"message\":\"Various fixes for bitbucket module\\n\\n- added get_user to force login\\n- switched from default= to tracking= in add() method\\n- fixed call for delete method\\n- fixed call for get repositories\",\"tree\":{\"sha\":\"f04370cb244e56bd69143a93f09209e7d13317e5\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f04370cb244e56bd69143a93f09209e7d13317e5\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/4762547638bc3c4001f561e2d6fd9e19f58b5a95\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/4762547638bc3c4001f561e2d6fd9e19f58b5a95\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/4762547638bc3c4001f561e2d6fd9e19f58b5a95\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/4762547638bc3c4001f561e2d6fd9e19f58b5a95/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\"}]},{\"sha\":\"ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:52:24Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:52:24Z\"},\"message\":\"Updated bitbucket subclass fixes\",\"tree\":{\"sha\":\"27c22f40ee75487e41534bc8af839e64656259af\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/27c22f40ee75487e41534bc8af839e64656259af\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/ebb6ebd1c5e04bc69e8bcc52bbbcd1ed3e666489/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\"}]},{\"sha\":\"70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:51:45Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:51:45Z\"},\"message\":\"Updated format_path() method prototype\\n\\n- changed to namespace/repository instead of user/repo\",\"tree\":{\"sha\":\"b83e2f6ddf7225d0498e249c4c3fefccef3e5a3d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/b83e2f6ddf7225d0498e249c4c3fefccef3e5a3d\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/70a8133b9a76f2aa88a46b3f2fa25864da1bf0d7/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"1d600105a75dcdee7e542bf94a7abf4526a04e99\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/1d600105a75dcdee7e542bf94a7abf4526a04e99\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/1d600105a75dcdee7e542bf94a7abf4526a04e99\"}]},{\"sha\":\"1d600105a75dcdee7e542bf94a7abf4526a04e99\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:49:54Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T17:49:54Z\"},\"message\":\"Updated buildout config with default valuers for arguments\",\"tree\":{\"sha\":\"cd4e58b6187d04269b074a907e6e0ab8c135a66c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/cd4e58b6187d04269b074a907e6e0ab8c135a66c\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/1d600105a75dcdee7e542bf94a7abf4526a04e99\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/1d600105a75dcdee7e542bf94a7abf4526a04e99\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/1d600105a75dcdee7e542bf94a7abf4526a04e99\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/1d600105a75dcdee7e542bf94a7abf4526a04e99/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"291531b6437aa5cf2578963e244996f092e7b40c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/291531b6437aa5cf2578963e244996f092e7b40c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/291531b6437aa5cf2578963e244996f092e7b40c\"}]},{\"sha\":\"291531b6437aa5cf2578963e244996f092e7b40c\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T09:41:21Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T09:43:17Z\"},\"message\":\"Updated buildout with proper py.<GITHUB_NAMESPACE> arguments and removed tox/nose\",\"tree\":{\"sha\":\"2a7d91aee9d29b9b65c09a061acd8989f8e3d2f4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/2a7d91aee9d29b9b65c09a061acd8989f8e3d2f4\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/291531b6437aa5cf2578963e244996f092e7b40c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/291531b6437aa5cf2578963e244996f092e7b40c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/291531b6437aa5cf2578963e244996f092e7b40c\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/291531b6437aa5cf2578963e244996f092e7b40c/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"e2ab22cc7c80eb985db64d0659b9bd3f494a9818\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e2ab22cc7c80eb985db64d0659b9bd3f494a9818\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e2ab22cc7c80eb985db64d0659b9bd3f494a9818\"}]},{\"sha\":\"e2ab22cc7c80eb985db64d0659b9bd3f494a9818\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T09:00:52Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T09:00:52Z\"},\"message\":\"Added more cassettes for gitlab <GITHUB_NAMESPACE>s\",\"tree\":{\"sha\":\"bc5b0c86169fd1666bdd565ffd5e88f95962b21e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/bc5b0c86169fd1666bdd565ffd5e88f95962b21e\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/e2ab22cc7c80eb985db64d0659b9bd3f494a9818\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e2ab22cc7c80eb985db64d0659b9bd3f494a9818\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e2ab22cc7c80eb985db64d0659b9bd3f494a9818\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e2ab22cc7c80eb985db64d0659b9bd3f494a9818/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"b2661f56e278119806013b56f5ac748a972d89fd\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b2661f56e278119806013b56f5ac748a972d89fd\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b2661f56e278119806013b56f5ac748a972d89fd\"}]},{\"sha\":\"b2661f56e278119806013b56f5ac748a972d89fd\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T09:00:19Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T09:00:19Z\"},\"message\":\"Removed colourisation of logs, added git module verbosity update\",\"tree\":{\"sha\":\"7bde8b889e033780a8a12156e03603c713b8d4d4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/7bde8b889e033780a8a12156e03603c713b8d4d4\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/b2661f56e278119806013b56f5ac748a972d89fd\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b2661f56e278119806013b56f5ac748a972d89fd\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b2661f56e278119806013b56f5ac748a972d89fd\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b2661f56e278119806013b56f5ac748a972d89fd/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"88b30051926ca2c744ebd95344d34d25bb50b3b6\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88b30051926ca2c744ebd95344d34d25bb50b3b6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88b30051926ca2c744ebd95344d34d25bb50b3b6\"}]},{\"sha\":\"88b30051926ca2c744ebd95344d34d25bb50b3b6\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:58:42Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:58:42Z\"},\"message\":\"Fixed gitlab add method handling, error handling and updated <GITHUB_NAMESPACE>s\\n\\n- fixed default\u2192tracking paramater change for add()\\n- updated error handling to simplify return check for fork()\\n- removed colorisation of log in <GITHUB_NAMESPACE>s\\n- updated fork cassette for gitlab\",\"tree\":{\"sha\":\"02e10113cab33aa244679dff88ee10f2e849da01\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/02e10113cab33aa244679dff88ee10f2e849da01\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/88b30051926ca2c744ebd95344d34d25bb50b3b6\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88b30051926ca2c744ebd95344d34d25bb50b3b6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88b30051926ca2c744ebd95344d34d25bb50b3b6\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88b30051926ca2c744ebd95344d34d25bb50b3b6/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"2e1e1be09f97f8930475c05cdd4c370b71197a5a\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2e1e1be09f97f8930475c05cdd4c370b71197a5a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2e1e1be09f97f8930475c05cdd4c370b71197a5a\"}]},{\"sha\":\"2e1e1be09f97f8930475c05cdd4c370b71197a5a\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:55:08Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:55:08Z\"},\"message\":\"Fixed gitlab authentication process\",\"tree\":{\"sha\":\"55350353b12e52a81af9c98dccacdaa801048378\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/55350353b12e52a81af9c98dccacdaa801048378\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/2e1e1be09f97f8930475c05cdd4c370b71197a5a\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2e1e1be09f97f8930475c05cdd4c370b71197a5a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2e1e1be09f97f8930475c05cdd4c370b71197a5a\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2e1e1be09f97f8930475c05cdd4c370b71197a5a/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"816064980bd73e5da10cae4ac4a609cfb9f20d19\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/816064980bd73e5da10cae4ac4a609cfb9f20d19\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/816064980bd73e5da10cae4ac4a609cfb9f20d19\"}]},{\"sha\":\"816064980bd73e5da10cae4ac4a609cfb9f20d19\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:54:44Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:54:44Z\"},\"message\":\"Added get_repository() method to interface,\\nadded repository exists assert helpers\",\"tree\":{\"sha\":\"ffe4ca7f343213967806c1f5e2a306f78a072a27\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/ffe4ca7f343213967806c1f5e2a306f78a072a27\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/816064980bd73e5da10cae4ac4a609cfb9f20d19\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/816064980bd73e5da10cae4ac4a609cfb9f20d19\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/816064980bd73e5da10cae4ac4a609cfb9f20d19\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/816064980bd73e5da10cae4ac4a609cfb9f20d19/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\"}]},{\"sha\":\"382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:51:10Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-29T08:51:10Z\"},\"message\":\"Added capture log module to <GITHUB_NAMESPACE>s\",\"tree\":{\"sha\":\"be929b45ef34b58990d1bc8b14d0f4632190dc06\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/be929b45ef34b58990d1bc8b14d0f4632190dc06\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/382327f2b1eb3ad8a3448ba7aff5b2dd0b7219e7/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\"}]},{\"sha\":\"ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:49:05Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:49:05Z\"},\"message\":\"Added cassettes for github <GITHUB_NAMESPACE>s\",\"tree\":{\"sha\":\"c7f09658fd80046d3ee73db41eb94c82d7c9ea16\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/c7f09658fd80046d3ee73db41eb94c82d7c9ea16\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/ca1fe480db72eed6d05d150ffaf8e9f6dfa06961\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/ca1fe480db72eed6d05d150ffaf8e9f6dfa06961/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"79908d3e5a8f998bd7c6468f888056daf77a066d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/79908d3e5a8f998bd7c6468f888056daf77a066d\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/79908d3e5a8f998bd7c6468f888056daf77a066d\"}]},{\"sha\":\"79908d3e5a8f998bd7c6468f888056daf77a066d\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:48:33Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:48:33Z\"},\"message\":\"Added gitlab <GITHUB_NAMESPACE>s (WIP)\",\"tree\":{\"sha\":\"a623e00795c275632a82cc91b83b687aa0ebc472\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/a623e00795c275632a82cc91b83b687aa0ebc472\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/79908d3e5a8f998bd7c6468f888056daf77a066d\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/79908d3e5a8f998bd7c6468f888056daf77a066d\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/79908d3e5a8f998bd7c6468f888056daf77a066d\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/79908d3e5a8f998bd7c6468f888056daf77a066d/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\"}]},{\"sha\":\"c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:47:49Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:47:49Z\"},\"message\":\"Fixed initialisation of gitlab\",\"tree\":{\"sha\":\"edec9f0fca6a7ff0a31e670a2d5d47f198eb5869\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/edec9f0fca6a7ff0a31e670a2d5d47f198eb5869\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/c9b3a403c9caf380c9068a6f9c124cc42a7b8cf5/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\"}]},{\"sha\":\"cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:47:36Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:47:36Z\"},\"message\":\"Updated <GITHUB_NAMESPACE>s and cassettes for github <GITHUB_NAMESPACE>ing\",\"tree\":{\"sha\":\"be9a7f48a88722b548e57300604f403d16dfb433\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/be9a7f48a88722b548e57300604f403d16dfb433\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/cf1b06c85d2aaec8f500ab8d8b95fc09103b9396\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/cf1b06c85d2aaec8f500ab8d8b95fc09103b9396/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"e704a9ea948c2f7a68315b26721c815b0c4fb520\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e704a9ea948c2f7a68315b26721c815b0c4fb520\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e704a9ea948c2f7a68315b26721c815b0c4fb520\"}]},{\"sha\":\"e704a9ea948c2f7a68315b26721c815b0c4fb520\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:35:06Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:36:43Z\"},\"message\":\"Cosmetics change\\n\\n- updated assert calls\\n- updated confirmation question\",\"tree\":{\"sha\":\"f5ee129b1f88c4b09ea3ddbd198ed660410b07af\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f5ee129b1f88c4b09ea3ddbd198ed660410b07af\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/e704a9ea948c2f7a68315b26721c815b0c4fb520\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e704a9ea948c2f7a68315b26721c815b0c4fb520\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/e704a9ea948c2f7a68315b26721c815b0c4fb520\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/e704a9ea948c2f7a68315b26721c815b0c4fb520/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"9688956e2bd252741600818e8880a2fd2c697c6a\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9688956e2bd252741600818e8880a2fd2c697c6a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9688956e2bd252741600818e8880a2fd2c697c6a\"}]},{\"sha\":\"9688956e2bd252741600818e8880a2fd2c697c6a\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:33:21Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:33:21Z\"},\"message\":\"Added --no-clone option to the fork action\\n\\n- updated subclasses\",\"tree\":{\"sha\":\"e0c4967f67f6402d4e606bacea1f43b45d65bcc5\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/e0c4967f67f6402d4e606bacea1f43b45d65bcc5\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/9688956e2bd252741600818e8880a2fd2c697c6a\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9688956e2bd252741600818e8880a2fd2c697c6a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9688956e2bd252741600818e8880a2fd2c697c6a\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9688956e2bd252741600818e8880a2fd2c697c6a/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"361cfb25f2e0a2f944f3827439e63c175d78f660\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/361cfb25f2e0a2f944f3827439e63c175d78f660\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/361cfb25f2e0a2f944f3827439e63c175d78f660\"}]},{\"sha\":\"361cfb25f2e0a2f944f3827439e63c175d78f660\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:31:16Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:31:16Z\"},\"message\":\"Added an user virtual property to RepositoryService\\n\\n- added implementations in subclasses\\n- updated usage\",\"tree\":{\"sha\":\"bf2db89230284f6825401bb63d947073d0fe8e61\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/bf2db89230284f6825401bb63d947073d0fe8e61\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/361cfb25f2e0a2f944f3827439e63c175d78f660\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/361cfb25f2e0a2f944f3827439e63c175d78f660\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/361cfb25f2e0a2f944f3827439e63c175d78f660\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/361cfb25f2e0a2f944f3827439e63c175d78f660/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\"}]},{\"sha\":\"8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:25:43Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-27T18:25:43Z\"},\"message\":\"Updated add method working\\n\\n- changed default to tracking to setup branch to track\",\"tree\":{\"sha\":\"7e3ad70828459ce1a8f0d2af923a3a733034d6a3\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/7e3ad70828459ce1a8f0d2af923a3a733034d6a3\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/8a0d9e7e0bec75bd0dfe7623276645a3bd6bbd5c/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"0da93f2f9a8cbf8629792e9e885014e288407df0\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/0da93f2f9a8cbf8629792e9e885014e288407df0\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/0da93f2f9a8cbf8629792e9e885014e288407df0\"}]},{\"sha\":\"0da93f2f9a8cbf8629792e9e885014e288407df0\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T16:16:24Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T16:16:24Z\"},\"message\":\"Added support for coverage and sugar plugins for py<GITHUB_NAMESPACE>\",\"tree\":{\"sha\":\"12c71eef9d97e2e7b47ed4c301c779be60a12770\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/12c71eef9d97e2e7b47ed4c301c779be60a12770\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/0da93f2f9a8cbf8629792e9e885014e288407df0\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/0da93f2f9a8cbf8629792e9e885014e288407df0\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/0da93f2f9a8cbf8629792e9e885014e288407df0\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/0da93f2f9a8cbf8629792e9e885014e288407df0/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"56022905a04992e8ee270f3685853c989b8b152e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/56022905a04992e8ee270f3685853c989b8b152e\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/56022905a04992e8ee270f3685853c989b8b152e\"}]},{\"sha\":\"56022905a04992e8ee270f3685853c989b8b152e\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T12:48:53Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T12:48:53Z\"},\"message\":\"Updated bitbucket module and added bitbucket <GITHUB_NAMESPACE>s\\n\\n- made monkey patching into subclass\",\"tree\":{\"sha\":\"9ad18f56ba6a72a66548002f7687281a3a8de75f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/9ad18f56ba6a72a66548002f7687281a3a8de75f\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/56022905a04992e8ee270f3685853c989b8b152e\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/56022905a04992e8ee270f3685853c989b8b152e\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/56022905a04992e8ee270f3685853c989b8b152e\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/56022905a04992e8ee270f3685853c989b8b152e/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"a8a3727c8de39e681ce0fa4959c48b0177b50768\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a8a3727c8de39e681ce0fa4959c48b0177b50768\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/a8a3727c8de39e681ce0fa4959c48b0177b50768\"}]},{\"sha\":\"a8a3727c8de39e681ce0fa4959c48b0177b50768\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T12:45:55Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T12:45:55Z\"},\"message\":\"Updated <GITHUB_NAMESPACE> suite with py.<GITHUB_NAMESPACE>\\n\\n- added helpers module to factorise <GITHUB_NAMESPACE>s\\n- updated gitlab code for auth in two steps\\n- updated github <GITHUB_NAMESPACE>s and added gitlab <GITHUB_NAMESPACE>s suite\\n- updated cassettes\\n\\nSigned-off-by: Guyzmo <<GITHUB_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"dd1611c2188c298e28186f863118f180276234ce\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/dd1611c2188c298e28186f863118f180276234ce\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/a8a3727c8de39e681ce0fa4959c48b0177b50768\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a8a3727c8de39e681ce0fa4959c48b0177b50768\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/a8a3727c8de39e681ce0fa4959c48b0177b50768\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/a8a3727c8de39e681ce0fa4959c48b0177b50768/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"6fb7162fc9e095fb3d559e06597179ea24267cc2\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/6fb7162fc9e095fb3d559e06597179ea24267cc2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/6fb7162fc9e095fb3d559e06597179ea24267cc2\"}]},{\"sha\":\"6fb7162fc9e095fb3d559e06597179ea24267cc2\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T09:56:37Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T09:56:37Z\"},\"message\":\"Simplified colourisation for logging\\n\\nSimplified colourisation for logging\",\"tree\":{\"sha\":\"d4a7fed38ff216e09f860eb75bda14f43c8d9817\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/d4a7fed38ff216e09f860eb75bda14f43c8d9817\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/6fb7162fc9e095fb3d559e06597179ea24267cc2\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/6fb7162fc9e095fb3d559e06597179ea24267cc2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/6fb7162fc9e095fb3d559e06597179ea24267cc2\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/6fb7162fc9e095fb3d559e06597179ea24267cc2/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"76a6d59d451c70b1a628617e747122b18131c80c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/76a6d59d451c70b1a628617e747122b18131c80c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/76a6d59d451c70b1a628617e747122b18131c80c\"}]},{\"sha\":\"76a6d59d451c70b1a628617e747122b18131c80c\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T09:55:20Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T09:55:20Z\"},\"message\":\"Simplified colourisation for logging\",\"tree\":{\"sha\":\"333ed4077253885e3755a7b6c59d3639c279f022\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/333ed4077253885e3755a7b6c59d3639c279f022\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/76a6d59d451c70b1a628617e747122b18131c80c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/76a6d59d451c70b1a628617e747122b18131c80c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/76a6d59d451c70b1a628617e747122b18131c80c\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/76a6d59d451c70b1a628617e747122b18131c80c/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"5199e55ae87ffaefd75075eb5e1efe9617a3db71\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5199e55ae87ffaefd75075eb5e1efe9617a3db71\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5199e55ae87ffaefd75075eb5e1efe9617a3db71\"}]},{\"sha\":\"5199e55ae87ffaefd75075eb5e1efe9617a3db71\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T03:04:24Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T03:04:24Z\"},\"message\":\"Updated <GITHUB_NAMESPACE>s with refactoring\\n==============\",\"tree\":{\"sha\":\"f3ae00f4e0ba4055fdae619d00886a227a5f1f89\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f3ae00f4e0ba4055fdae619d00886a227a5f1f89\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/5199e55ae87ffaefd75075eb5e1efe9617a3db71\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5199e55ae87ffaefd75075eb5e1efe9617a3db71\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5199e55ae87ffaefd75075eb5e1efe9617a3db71\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5199e55ae87ffaefd75075eb5e1efe9617a3db71/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"79d65ae024ecf896c1cd9314ecb6077105746257\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/79d65ae024ecf896c1cd9314ecb6077105746257\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/79d65ae024ecf896c1cd9314ecb6077105746257\"}]},{\"sha\":\"79d65ae024ecf896c1cd9314ecb6077105746257\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T02:55:42Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-26T02:55:42Z\"},\"message\":\"Refactored module services for more elegant autoloading\\n\\n- renamed git_repo.services.base into git_repo.services.service\\n- moved all services modules from git_repo.services\\nto git_repo.services.ext\\n- added autoload scheme in git_repo.services.ext.__init__\\n- added a bit of documentation and a log point in services\",\"tree\":{\"sha\":\"f0543179ef7fcb3f0ebbce661a92a157499f292f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f0543179ef7fcb3f0ebbce661a92a157499f292f\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/79d65ae024ecf896c1cd9314ecb6077105746257\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/79d65ae024ecf896c1cd9314ecb6077105746257\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/79d65ae024ecf896c1cd9314ecb6077105746257\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/79d65ae024ecf896c1cd9314ecb6077105746257/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"2f5cc11140153fd19cc39b5923196cd85df1fc3a\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2f5cc11140153fd19cc39b5923196cd85df1fc3a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2f5cc11140153fd19cc39b5923196cd85df1fc3a\"}]},{\"sha\":\"2f5cc11140153fd19cc39b5923196cd85df1fc3a\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-25T00:13:39Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-25T00:13:39Z\"},\"message\":\"Updated .gitignore\",\"tree\":{\"sha\":\"be3166d2fe4c99dd1a558837cc1acd20698f9bab\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/be3166d2fe4c99dd1a558837cc1acd20698f9bab\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/2f5cc11140153fd19cc39b5923196cd85df1fc3a\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2f5cc11140153fd19cc39b5923196cd85df1fc3a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/2f5cc11140153fd19cc39b5923196cd85df1fc3a\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/2f5cc11140153fd19cc39b5923196cd85df1fc3a/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"683036724a1c0f2592952047f19877990820c8d8\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/683036724a1c0f2592952047f19877990820c8d8\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/683036724a1c0f2592952047f19877990820c8d8\"}]},{\"sha\":\"683036724a1c0f2592952047f19877990820c8d8\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-25T00:13:06Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-25T00:13:06Z\"},\"message\":\"Added py.<GITHUB_NAMESPACE> support with betamax for handling unit <GITHUB_NAMESPACE>s (removed old <GITHUB_NAMESPACE>s)\\n\\n- removed older <GITHUB_NAMESPACE>s\\n- disabled tox <GITHUB_NAMESPACE>ing for the time being\\n- added a few cassettes\\n\\n`/!\\\\` Testing is still WIP !!!\",\"tree\":{\"sha\":\"bd226d3ba5a54874f26d40e91bc4fdc8c49775ed\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/bd226d3ba5a54874f26d40e91bc4fdc8c49775ed\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/683036724a1c0f2592952047f19877990820c8d8\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/683036724a1c0f2592952047f19877990820c8d8\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/683036724a1c0f2592952047f19877990820c8d8\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/683036724a1c0f2592952047f19877990820c8d8/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"869d37ebba547d8b58b25f5b5caa507461791137\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/869d37ebba547d8b58b25f5b5caa507461791137\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/869d37ebba547d8b58b25f5b5caa507461791137\"}]},{\"sha\":\"869d37ebba547d8b58b25f5b5caa507461791137\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-25T00:10:59Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-25T00:10:59Z\"},\"message\":\"Fixed a few github bugs, and enabled two steps auth for github\\n\\n- Improved error reporting\\n- Fixed self user handling (through self.username)\",\"tree\":{\"sha\":\"661bf0f77f08e9ee95e25634bb043ff96b561106\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/661bf0f77f08e9ee95e25634bb043ff96b561106\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/869d37ebba547d8b58b25f5b5caa507461791137\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/869d37ebba547d8b58b25f5b5caa507461791137\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/869d37ebba547d8b58b25f5b5caa507461791137\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/869d37ebba547d8b58b25f5b5caa507461791137/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"71282a24f12ab02a461a73eede4f823d6db9da1b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/71282a24f12ab02a461a73eede4f823d6db9da1b\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/71282a24f12ab02a461a73eede4f823d6db9da1b\"}]},{\"sha\":\"71282a24f12ab02a461a73eede4f823d6db9da1b\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T18:36:48Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T18:36:48Z\"},\"message\":\"Updated classifiers in setup.py\",\"tree\":{\"sha\":\"25f8c64e572e7f4e8f68744b413a4db8529fbf33\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/25f8c64e572e7f4e8f68744b413a4db8529fbf33\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/71282a24f12ab02a461a73eede4f823d6db9da1b\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/71282a24f12ab02a461a73eede4f823d6db9da1b\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/71282a24f12ab02a461a73eede4f823d6db9da1b\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/71282a24f12ab02a461a73eede4f823d6db9da1b/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"78ae85beec91382b981930225ae23a4acbcae5dd\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/78ae85beec91382b981930225ae23a4acbcae5dd\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/78ae85beec91382b981930225ae23a4acbcae5dd\"}]},{\"sha\":\"78ae85beec91382b981930225ae23a4acbcae5dd\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T18:04:26Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T18:04:26Z\"},\"message\":\"Fixed error handling of lack of privatekey for bitbucket\",\"tree\":{\"sha\":\"d4f714a0c88d3d350fc0aca5371b33a04d7cc760\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/d4f714a0c88d3d350fc0aca5371b33a04d7cc760\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/78ae85beec91382b981930225ae23a4acbcae5dd\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/78ae85beec91382b981930225ae23a4acbcae5dd\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/78ae85beec91382b981930225ae23a4acbcae5dd\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/78ae85beec91382b981930225ae23a4acbcae5dd/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\"}]},{\"sha\":\"1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T18:02:28Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T18:02:28Z\"},\"message\":\"Fixed connection to github without a private key error.\",\"tree\":{\"sha\":\"e7d1edb2b4efdf843cc9b8a968fc89a4f43ed5c9\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/e7d1edb2b4efdf843cc9b8a968fc89a4f43ed5c9\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/1a1433846c9888ae5dcfc4e1cf7fb43f3b73bad2/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"c28265f252cbd18f053075a25ebba1b36ee60e40\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/c28265f252cbd18f053075a25ebba1b36ee60e40\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/c28265f252cbd18f053075a25ebba1b36ee60e40\"}]},{\"sha\":\"c28265f252cbd18f053075a25ebba1b36ee60e40\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:55:47Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:55:47Z\"},\"message\":\"updated README\\n\\nSigned-off-by: Guyzmo <<GITHUB_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"3db962a259edc70a51999883b3d380bfbbaaa4a4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/3db962a259edc70a51999883b3d380bfbbaaa4a4\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/c28265f252cbd18f053075a25ebba1b36ee60e40\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/c28265f252cbd18f053075a25ebba1b36ee60e40\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/c28265f252cbd18f053075a25ebba1b36ee60e40\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/c28265f252cbd18f053075a25ebba1b36ee60e40/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\"}]},{\"sha\":\"88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:53:03Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:53:03Z\"},\"message\":\"Added <GITHUB_NAMESPACE>s\",\"tree\":{\"sha\":\"f8a52456ce59f48ef0eed87d7c1ac31792f53327\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f8a52456ce59f48ef0eed87d7c1ac31792f53327\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88cd705c3d6ec0a3c081ef1f7250c1f2abe662f2/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"5832a85118061fec71ec832ea97e9e87311dbf94\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5832a85118061fec71ec832ea97e9e87311dbf94\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5832a85118061fec71ec832ea97e9e87311dbf94\"}]},{\"sha\":\"5832a85118061fec71ec832ea97e9e87311dbf94\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:51:17Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:51:17Z\"},\"message\":\"Added support for setup.py dist_clean command\\n\\n- to remove all data left over by buildout\",\"tree\":{\"sha\":\"e0025429d05a832beae974e619a787351baf402b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/e0025429d05a832beae974e619a787351baf402b\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/5832a85118061fec71ec832ea97e9e87311dbf94\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5832a85118061fec71ec832ea97e9e87311dbf94\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5832a85118061fec71ec832ea97e9e87311dbf94\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5832a85118061fec71ec832ea97e9e87311dbf94/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"d13433fb76c748a9dde61fcaa8864945316e0e77\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d13433fb76c748a9dde61fcaa8864945316e0e77\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d13433fb76c748a9dde61fcaa8864945316e0e77\"}]},{\"sha\":\"d13433fb76c748a9dde61fcaa8864945316e0e77\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:50:12Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:50:12Z\"},\"message\":\"Bugfixes in gitlab support\\n\\n- added .auth() method call to generate .user member\\n- fixed prototype of .create() method\\n- improved request error handling\",\"tree\":{\"sha\":\"cc94076f95cec48787ec0fcaf120032597963ed8\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/cc94076f95cec48787ec0fcaf120032597963ed8\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/d13433fb76c748a9dde61fcaa8864945316e0e77\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d13433fb76c748a9dde61fcaa8864945316e0e77\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d13433fb76c748a9dde61fcaa8864945316e0e77\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d13433fb76c748a9dde61fcaa8864945316e0e77/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\"}]},{\"sha\":\"9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:48:16Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:48:16Z\"},\"message\":\"Bugfixes for bitbucket API support\\n\\n- improved error handling (using monkey patched version)\\n- using good username attribute\",\"tree\":{\"sha\":\"2cdbcf163704ccef7855bb3035a254c7614f975d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/2cdbcf163704ccef7855bb3035a254c7614f975d\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9d9bd323b3aab0c034d49c5e40f635a1b9ae55f5/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"dacb72f9e8b320cdafbdca73440a00395d502b40\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/dacb72f9e8b320cdafbdca73440a00395d502b40\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/dacb72f9e8b320cdafbdca73440a00395d502b40\"}]},{\"sha\":\"dacb72f9e8b320cdafbdca73440a00395d502b40\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:47:16Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:47:16Z\"},\"message\":\"Fixed support of the open command\\n\\n- added ability for RepositoryService to be instancied without repository\\n- parsing main configuration when so happens\\n- connection is only done when a repository is given\",\"tree\":{\"sha\":\"f6f371f89a8510839ca36845838e87485fe7ba38\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f6f371f89a8510839ca36845838e87485fe7ba38\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/dacb72f9e8b320cdafbdca73440a00395d502b40\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/dacb72f9e8b320cdafbdca73440a00395d502b40\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/dacb72f9e8b320cdafbdca73440a00395d502b40\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/dacb72f9e8b320cdafbdca73440a00395d502b40/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\"}]},{\"sha\":\"40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:44:33Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:44:33Z\"},\"message\":\"Added path options support\\n\\n- make the --path option being taken into account\\n- added support for several commands\",\"tree\":{\"sha\":\"6d47debe6f954ecfe195004849a6cedc50d59c2e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/6d47debe6f954ecfe195004849a6cedc50d59c2e\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/40303a3710ddcbf72ff90d4e4a0f0ab2e9b5bb3f/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"5b3c5a8752b090aaf62bc93c72003547dc4661b3\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5b3c5a8752b090aaf62bc93c72003547dc4661b3\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5b3c5a8752b090aaf62bc93c72003547dc4661b3\"}]},{\"sha\":\"5b3c5a8752b090aaf62bc93c72003547dc4661b3\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:40:27Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:40:27Z\"},\"message\":\"Improved verbosity handling\",\"tree\":{\"sha\":\"36c1d624460cf118262c9c979b7d61ff45b7632b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/36c1d624460cf118262c9c979b7d61ff45b7632b\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/5b3c5a8752b090aaf62bc93c72003547dc4661b3\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5b3c5a8752b090aaf62bc93c72003547dc4661b3\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/5b3c5a8752b090aaf62bc93c72003547dc4661b3\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/5b3c5a8752b090aaf62bc93c72003547dc4661b3/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"835c1cf37986522f5f7b95d606e16735c1042e9f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/835c1cf37986522f5f7b95d606e16735c1042e9f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/835c1cf37986522f5f7b95d606e16735c1042e9f\"}]},{\"sha\":\"835c1cf37986522f5f7b95d606e16735c1042e9f\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:36:57Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-24T16:36:57Z\"},\"message\":\"Several bug fixes\\n\\n- fixed missing dependency on progress\\n- fixed wrong argument passing to service methods\\n- fixed forgotten import in repo (misssing exception)\\n- fixed typo in --help\",\"tree\":{\"sha\":\"99ac21c4c9bcbfca1f567b83ba54382693a945b4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/99ac21c4c9bcbfca1f567b83ba54382693a945b4\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/835c1cf37986522f5f7b95d606e16735c1042e9f\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/835c1cf37986522f5f7b95d606e16735c1042e9f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/835c1cf37986522f5f7b95d606e16735c1042e9f\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/835c1cf37986522f5f7b95d606e16735c1042e9f/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"9bd6477cd3069a0968743510ed464dc1a37a75b7\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9bd6477cd3069a0968743510ed464dc1a37a75b7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9bd6477cd3069a0968743510ed464dc1a37a75b7\"}]},{\"sha\":\"9bd6477cd3069a0968743510ed464dc1a37a75b7\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T13:40:59Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<GITHUB_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T13:40:59Z\"},\"message\":\"Refactored exceptions models\\n\\n- Added exceptions module with custom exceptions\\n- Changed all barebone Exceptions into custom exceptions\",\"tree\":{\"sha\":\"97268dc7bae48f81fcc2e6cf62dcb5f4cae5cc04\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/97268dc7bae48f81fcc2e6cf62dcb5f4cae5cc04\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/9bd6477cd3069a0968743510ed464dc1a37a75b7\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9bd6477cd3069a0968743510ed464dc1a37a75b7\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9bd6477cd3069a0968743510ed464dc1a37a75b7\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9bd6477cd3069a0968743510ed464dc1a37a75b7/comments\",\"author\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"9875c8570312c4f34c6ee34a42b9732120db8433\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9875c8570312c4f34c6ee34a42b9732120db8433\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9875c8570312c4f34c6ee34a42b9732120db8433\"}]},{\"sha\":\"9875c8570312c4f34c6ee34a42b9732120db8433\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T13:09:20Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T13:39:13Z\"},\"message\":\"Added missing virtual method connect on RepositoryService\",\"tree\":{\"sha\":\"c98c5d0f8d8a55403f405a703e9e53b59de5f81e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/c98c5d0f8d8a55403f405a703e9e53b59de5f81e\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/9875c8570312c4f34c6ee34a42b9732120db8433\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9875c8570312c4f34c6ee34a42b9732120db8433\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9875c8570312c4f34c6ee34a42b9732120db8433\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9875c8570312c4f34c6ee34a42b9732120db8433/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\"}]},{\"sha\":\"9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T11:10:47Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T11:10:47Z\"},\"message\":\"Fixed typo\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"719936123c065c7175303c7bb1c51b4d34e9b60b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/719936123c065c7175303c7bb1c51b4d34e9b60b\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/9c4db556c9de1b44b0c84ca76f63c4db5f7cff4f/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"f51953ae0dc048f88371d1dc4d0828936b5c7128\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f51953ae0dc048f88371d1dc4d0828936b5c7128\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f51953ae0dc048f88371d1dc4d0828936b5c7128\"}]},{\"sha\":\"f51953ae0dc048f88371d1dc4d0828936b5c7128\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T11:09:26Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T11:09:26Z\"},\"message\":\"Made impossible to have multiple times the same URL in the 'all' remote.\\n\\n- Monkey patched a missing method on remotes for python-git\",\"tree\":{\"sha\":\"a9d172b795d512ab8019ffae32704a895acb1d72\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/a9d172b795d512ab8019ffae32704a895acb1d72\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/f51953ae0dc048f88371d1dc4d0828936b5c7128\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f51953ae0dc048f88371d1dc4d0828936b5c7128\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f51953ae0dc048f88371d1dc4d0828936b5c7128\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f51953ae0dc048f88371d1dc4d0828936b5c7128/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\"}]},{\"sha\":\"f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T10:19:29Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T10:19:29Z\"},\"message\":\"Homogeneisation of the API\\nImproved cosmetics\",\"tree\":{\"sha\":\"49bce35b549815c6148a9112fafa35445af44a8b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/49bce35b549815c6148a9112fafa35445af44a8b\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f4aa2902b71243ff67aa7d3f8a81f9aefd8e3996/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\"}]},{\"sha\":\"d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:08:02Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:08:02Z\"},\"message\":\"Updated README with progress on TODO list\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"f5b584e7e9c442b5125b981f14f300442e02a1e9\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f5b584e7e9c442b5125b981f14f300442e02a1e9\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d3ac4fc7a35a9c3b1325bab3c6e60cfcc0660b33/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\"}]},{\"sha\":\"0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:06:59Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:06:59Z\"},\"message\":\"Version bump to 1.4\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"ed32ba98448a51c4e62668726f6d420b82df6b02\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/ed32ba98448a51c4e62668726f6d420b82df6b02\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/0d55d0f5eca5507f42b318cc399ddfb4ca50a07c\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/0d55d0f5eca5507f42b318cc399ddfb4ca50a07c/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\"}]},{\"sha\":\"d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:05:59Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:05:59Z\"},\"message\":\"Fixed monkey_patch() method call in bitbucket\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"20274d8d3337c12ba72659745272415f9cf3ba05\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/20274d8d3337c12ba72659745272415f9cf3ba05\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d7c6ca75d83e70f9dd792a1dcdc6e92a9b5a27e2/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"b59683a973a1ae7356c1487521bfeefc34da3198\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b59683a973a1ae7356c1487521bfeefc34da3198\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b59683a973a1ae7356c1487521bfeefc34da3198\"}]},{\"sha\":\"b59683a973a1ae7356c1487521bfeefc34da3198\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:02:21Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:02:21Z\"},\"message\":\"Fixed wrong member when adding remote when forking on github\",\"tree\":{\"sha\":\"332b6968798e3b960b886a1aad8714edbb4f244f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/332b6968798e3b960b886a1aad8714edbb4f244f\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/b59683a973a1ae7356c1487521bfeefc34da3198\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b59683a973a1ae7356c1487521bfeefc34da3198\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b59683a973a1ae7356c1487521bfeefc34da3198\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b59683a973a1ae7356c1487521bfeefc34da3198/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"aa77018ac63a8a992ef87daecf2f343fcd36cbf3\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/aa77018ac63a8a992ef87daecf2f343fcd36cbf3\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/aa77018ac63a8a992ef87daecf2f343fcd36cbf3\"}]},{\"sha\":\"aa77018ac63a8a992ef87daecf2f343fcd36cbf3\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:01:53Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T02:01:53Z\"},\"message\":\"Fixed exception logging when in verbose mode\",\"tree\":{\"sha\":\"28495c25a9ccccd44959389b4af86ec93b85a8da\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/28495c25a9ccccd44959389b4af86ec93b85a8da\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/aa77018ac63a8a992ef87daecf2f343fcd36cbf3\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/aa77018ac63a8a992ef87daecf2f343fcd36cbf3\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/aa77018ac63a8a992ef87daecf2f343fcd36cbf3\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/aa77018ac63a8a992ef87daecf2f343fcd36cbf3/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"47d5131907dc70377e2ac5dca43f07e00333c4a4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/47d5131907dc70377e2ac5dca43f07e00333c4a4\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/47d5131907dc70377e2ac5dca43f07e00333c4a4\"}]},{\"sha\":\"47d5131907dc70377e2ac5dca43f07e00333c4a4\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:56:33Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:56:33Z\"},\"message\":\"Fixed bug in gitlab\u2192fork\",\"tree\":{\"sha\":\"3f20b44201bfe59799504c1033b82a758021facc\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/3f20b44201bfe59799504c1033b82a758021facc\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/47d5131907dc70377e2ac5dca43f07e00333c4a4\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/47d5131907dc70377e2ac5dca43f07e00333c4a4\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/47d5131907dc70377e2ac5dca43f07e00333c4a4\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/47d5131907dc70377e2ac5dca43f07e00333c4a4/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"87bb97820e6a6b35d73194385f7d3499c5c5b6e6\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/87bb97820e6a6b35d73194385f7d3499c5c5b6e6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/87bb97820e6a6b35d73194385f7d3499c5c5b6e6\"}]},{\"sha\":\"87bb97820e6a6b35d73194385f7d3499c5c5b6e6\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:56:14Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:56:14Z\"},\"message\":\"Improved logging handling\",\"tree\":{\"sha\":\"11d56c10e884ef0693043f324e8a516a5e9adb76\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/11d56c10e884ef0693043f324e8a516a5e9adb76\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/87bb97820e6a6b35d73194385f7d3499c5c5b6e6\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/87bb97820e6a6b35d73194385f7d3499c5c5b6e6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/87bb97820e6a6b35d73194385f7d3499c5c5b6e6\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/87bb97820e6a6b35d73194385f7d3499c5c5b6e6/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"73833fa6865d524e3b94ad1ad5a8387799697ae6\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/73833fa6865d524e3b94ad1ad5a8387799697ae6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/73833fa6865d524e3b94ad1ad5a8387799697ae6\"}]},{\"sha\":\"73833fa6865d524e3b94ad1ad5a8387799697ae6\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:33:33Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:33:33Z\"},\"message\":\"Improved logging operations\\n\\n- Made possible to show all git commands with -vv\",\"tree\":{\"sha\":\"28176d3da78a1c9e585172a44505418dd5c07354\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/28176d3da78a1c9e585172a44505418dd5c07354\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/73833fa6865d524e3b94ad1ad5a8387799697ae6\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/73833fa6865d524e3b94ad1ad5a8387799697ae6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/73833fa6865d524e3b94ad1ad5a8387799697ae6\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/73833fa6865d524e3b94ad1ad5a8387799697ae6/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"55f03f263c42089474aa7da962427b1c939c0f88\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/55f03f263c42089474aa7da962427b1c939c0f88\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/55f03f263c42089474aa7da962427b1c939c0f88\"}]},{\"sha\":\"55f03f263c42089474aa7da962427b1c939c0f88\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:32:53Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T01:32:53Z\"},\"message\":\"Fixed issue happening when ran within an existing repository\\n\\n- made sure that GIT_WORK_TREE and GIT_DIR are unset when running git_repo\",\"tree\":{\"sha\":\"c741c9cd407ad567f4c7a4217129074d45d24aa7\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/c741c9cd407ad567f4c7a4217129074d45d24aa7\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/55f03f263c42089474aa7da962427b1c939c0f88\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/55f03f263c42089474aa7da962427b1c939c0f88\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/55f03f263c42089474aa7da962427b1c939c0f88\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/55f03f263c42089474aa7da962427b1c939c0f88/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"dc21007d72698795949f2cfd4b6cd3adb0188a02\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/dc21007d72698795949f2cfd4b6cd3adb0188a02\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/dc21007d72698795949f2cfd4b6cd3adb0188a02\"}]},{\"sha\":\"dc21007d72698795949f2cfd4b6cd3adb0188a02\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T00:49:33Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-23T00:49:33Z\"},\"message\":\"Refactored project to be split into several modules\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"4190d7ed601c4ad717df1b0aa8190f07a9766168\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/4190d7ed601c4ad717df1b0aa8190f07a9766168\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/dc21007d72698795949f2cfd4b6cd3adb0188a02\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/dc21007d72698795949f2cfd4b6cd3adb0188a02\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/dc21007d72698795949f2cfd4b6cd3adb0188a02\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/dc21007d72698795949f2cfd4b6cd3adb0188a02/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"51fdbb054ce66d13a483a892559f8a6586a7ad65\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/51fdbb054ce66d13a483a892559f8a6586a7ad65\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/51fdbb054ce66d13a483a892559f8a6586a7ad65\"}]},{\"sha\":\"51fdbb054ce66d13a483a892559f8a6586a7ad65\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T23:13:56Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T23:13:56Z\"},\"message\":\"Added guards against python2\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"354f2945d3930711b6f2928fa67d5d47c824d85e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/354f2945d3930711b6f2928fa67d5d47c824d85e\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/51fdbb054ce66d13a483a892559f8a6586a7ad65\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/51fdbb054ce66d13a483a892559f8a6586a7ad65\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/51fdbb054ce66d13a483a892559f8a6586a7ad65\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/51fdbb054ce66d13a483a892559f8a6586a7ad65/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"71447eebff3abaab7f8614af7a47ef4a4a185527\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/71447eebff3abaab7f8614af7a47ef4a4a185527\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/71447eebff3abaab7f8614af7a47ef4a4a185527\"}]},{\"sha\":\"71447eebff3abaab7f8614af7a47ef4a4a185527\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T23:10:26Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T23:10:26Z\"},\"message\":\"updated readme with links\",\"tree\":{\"sha\":\"43df3aca6d6fe994e884b2bfd0eb478478e5303e\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/43df3aca6d6fe994e884b2bfd0eb478478e5303e\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/71447eebff3abaab7f8614af7a47ef4a4a185527\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/71447eebff3abaab7f8614af7a47ef4a4a185527\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/71447eebff3abaab7f8614af7a47ef4a4a185527\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/71447eebff3abaab7f8614af7a47ef4a4a185527/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"04ff710745a43f8d04aae0696821b8a5bb20f0fc\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/04ff710745a43f8d04aae0696821b8a5bb20f0fc\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/04ff710745a43f8d04aae0696821b8a5bb20f0fc\"}]},{\"sha\":\"04ff710745a43f8d04aae0696821b8a5bb20f0fc\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T23:00:12Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T23:00:12Z\"},\"message\":\"updated readme\",\"tree\":{\"sha\":\"f98982df810b83c3824c2a203e0f4f2c7a86ff70\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/f98982df810b83c3824c2a203e0f4f2c7a86ff70\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/04ff710745a43f8d04aae0696821b8a5bb20f0fc\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/04ff710745a43f8d04aae0696821b8a5bb20f0fc\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/04ff710745a43f8d04aae0696821b8a5bb20f0fc\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/04ff710745a43f8d04aae0696821b8a5bb20f0fc/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"88842f2e2dfae5d7048319cd4354287d20dc21d3\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88842f2e2dfae5d7048319cd4354287d20dc21d3\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88842f2e2dfae5d7048319cd4354287d20dc21d3\"}]},{\"sha\":\"88842f2e2dfae5d7048319cd4354287d20dc21d3\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T22:44:20Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T22:44:20Z\"},\"message\":\"Updated README and version bump to 1.3\",\"tree\":{\"sha\":\"5f1c1349902fa5838eafb39793950e6138784b1a\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/5f1c1349902fa5838eafb39793950e6138784b1a\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/88842f2e2dfae5d7048319cd4354287d20dc21d3\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88842f2e2dfae5d7048319cd4354287d20dc21d3\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88842f2e2dfae5d7048319cd4354287d20dc21d3\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88842f2e2dfae5d7048319cd4354287d20dc21d3/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"309826ce0116c2ca0392ec8ba8312b5c8b171009\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/309826ce0116c2ca0392ec8ba8312b5c8b171009\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/309826ce0116c2ca0392ec8ba8312b5c8b171009\"}]},{\"sha\":\"309826ce0116c2ca0392ec8ba8312b5c8b171009\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T22:38:22Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T22:38:22Z\"},\"message\":\"Added actions fork and delete, enabled proper logging, fixed remote URL handling\\n\\n- changed url into fqdn and added url handling methods\\n- improved exception handling,\\n- improved verbosity levels\\n- added monkey patching of git module to add support of changing URL of a remote\\n- added monkey patching of bitbucket-api, because get/delete/fork were missing,\\n and HTTP return values were useless \u2014 read unparseable.\\n- added delete actions for the three services, with verbose confirmation\\n- added fork actions for the three services\\n- added verbosity handling\\n- added return value support\\n\\nSorry for this lengthy commit, I'll do my best for this not to happen again \u2665\",\"tree\":{\"sha\":\"b181b023689bf23a2f4f8bed58b14871aa363546\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/b181b023689bf23a2f4f8bed58b14871aa363546\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/309826ce0116c2ca0392ec8ba8312b5c8b171009\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/309826ce0116c2ca0392ec8ba8312b5c8b171009\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/309826ce0116c2ca0392ec8ba8312b5c8b171009\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/309826ce0116c2ca0392ec8ba8312b5c8b171009/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"88cf5a14803ff35ff735ebcdc94ca8edd4698d91\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88cf5a14803ff35ff735ebcdc94ca8edd4698d91\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88cf5a14803ff35ff735ebcdc94ca8edd4698d91\"}]},{\"sha\":\"88cf5a14803ff35ff735ebcdc94ca8edd4698d91\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T12:42:20Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T12:42:20Z\"},\"message\":\"Added all remote support and fixed URL handling\\n\\n- added `all` remote that gets updated with each new remote URL, so that `git push all`\\nsends to all remotes ;\\n- monkey patching git module to fix the missing set-url method\\n- fixed https only URLs, by using only fqdn in the configuration, and format it\\ncontextually\",\"tree\":{\"sha\":\"2a5dae33e433932125c11be934ce16ef848771e2\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/2a5dae33e433932125c11be934ce16ef848771e2\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/88cf5a14803ff35ff735ebcdc94ca8edd4698d91\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88cf5a14803ff35ff735ebcdc94ca8edd4698d91\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/88cf5a14803ff35ff735ebcdc94ca8edd4698d91\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/88cf5a14803ff35ff735ebcdc94ca8edd4698d91/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"b01009a9c685b2dc3af9338f3ec3d0eafbce1545\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b01009a9c685b2dc3af9338f3ec3d0eafbce1545\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b01009a9c685b2dc3af9338f3ec3d0eafbce1545\"}]},{\"sha\":\"b01009a9c685b2dc3af9338f3ec3d0eafbce1545\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T11:16:47Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-22T11:16:47Z\"},\"message\":\"Added support for `all` remote ref\\n\\n- monkey patching of git module to add the `set_url` method\",\"tree\":{\"sha\":\"e957e216fbb40bfec01645e78fd70a4185f66aab\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/e957e216fbb40bfec01645e78fd70a4185f66aab\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/b01009a9c685b2dc3af9338f3ec3d0eafbce1545\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b01009a9c685b2dc3af9338f3ec3d0eafbce1545\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/b01009a9c685b2dc3af9338f3ec3d0eafbce1545\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/b01009a9c685b2dc3af9338f3ec3d0eafbce1545/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\"}]},{\"sha\":\"f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T22:26:50Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T22:26:50Z\"},\"message\":\"Updated gitignore with new stuff to hide under the carpet!\",\"tree\":{\"sha\":\"649d43f6d335f39f625c8d7164b0b05a7ed32ce5\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/649d43f6d335f39f625c8d7164b0b05a7ed32ce5\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f80e175c7a98bfd0caabc68c21cdd5fe9b46110b\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f80e175c7a98bfd0caabc68c21cdd5fe9b46110b/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"32b70f5519ce24f6a87bae59a7056e7b632c4297\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/32b70f5519ce24f6a87bae59a7056e7b632c4297\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/32b70f5519ce24f6a87bae59a7056e7b632c4297\"}]},{\"sha\":\"32b70f5519ce24f6a87bae59a7056e7b632c4297\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T22:25:27Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T22:25:27Z\"},\"message\":\"Updated README and versions bump to 1.2\",\"tree\":{\"sha\":\"4101619632af945ae4fbb1c602ad5b9f6e589732\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/4101619632af945ae4fbb1c602ad5b9f6e589732\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/32b70f5519ce24f6a87bae59a7056e7b632c4297\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/32b70f5519ce24f6a87bae59a7056e7b632c4297\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/32b70f5519ce24f6a87bae59a7056e7b632c4297\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/32b70f5519ce24f6a87bae59a7056e7b632c4297/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"78fc68b989a817ca4d171f451519a60cd1cc14a4\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/78fc68b989a817ca4d171f451519a60cd1cc14a4\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/78fc68b989a817ca4d171f451519a60cd1cc14a4\"}]},{\"sha\":\"78fc68b989a817ca4d171f451519a60cd1cc14a4\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T22:24:44Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T22:24:44Z\"},\"message\":\"Added support for the fork command\\n\\n - Removed debug messages\\n - Added progress bar support for fetch/push (WIP)\\n - Moved imports to global env\\n - Extracted connection to services in connect() method\",\"tree\":{\"sha\":\"8b484319a95232e49fc35ae523f62d3e9db9dc0f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/8b484319a95232e49fc35ae523f62d3e9db9dc0f\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/78fc68b989a817ca4d171f451519a60cd1cc14a4\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/78fc68b989a817ca4d171f451519a60cd1cc14a4\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/78fc68b989a817ca4d171f451519a60cd1cc14a4\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/78fc68b989a817ca4d171f451519a60cd1cc14a4/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"f876a2aee63440d84b5480f0da24794fa4f9dea6\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f876a2aee63440d84b5480f0da24794fa4f9dea6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f876a2aee63440d84b5480f0da24794fa4f9dea6\"}]},{\"sha\":\"f876a2aee63440d84b5480f0da24794fa4f9dea6\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:31:23Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:31:23Z\"},\"message\":\"Fixed typo in setup.py ; version bump to 1.1\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"27af4020d1c145bc65f3add65df71b3a4482602f\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/27af4020d1c145bc65f3add65df71b3a4482602f\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/f876a2aee63440d84b5480f0da24794fa4f9dea6\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f876a2aee63440d84b5480f0da24794fa4f9dea6\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/f876a2aee63440d84b5480f0da24794fa4f9dea6\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/f876a2aee63440d84b5480f0da24794fa4f9dea6/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"d49a7411095f07ab8a93c25ea477fda3c4814465\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d49a7411095f07ab8a93c25ea477fda3c4814465\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d49a7411095f07ab8a93c25ea477fda3c4814465\"}]},{\"sha\":\"d49a7411095f07ab8a93c25ea477fda3c4814465\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:25:02Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:25:02Z\"},\"message\":\"Updated todo list in readme\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"2e9b88741e9af4aef4a16dd0d7c75730926c64d3\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/2e9b88741e9af4aef4a16dd0d7c75730926c64d3\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/d49a7411095f07ab8a93c25ea477fda3c4814465\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d49a7411095f07ab8a93c25ea477fda3c4814465\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/d49a7411095f07ab8a93c25ea477fda3c4814465\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/d49a7411095f07ab8a93c25ea477fda3c4814465/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"93052c16f85254ecee3465a477f140b13c273547\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/93052c16f85254ecee3465a477f140b13c273547\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/93052c16f85254ecee3465a477f140b13c273547\"}]},{\"sha\":\"93052c16f85254ecee3465a477f140b13c273547\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:21:55Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:21:55Z\"},\"message\":\"Added code configuration\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"5457e2bc5224b365dfac53f20d0a1c08bbac9228\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/5457e2bc5224b365dfac53f20d0a1c08bbac9228\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/93052c16f85254ecee3465a477f140b13c273547\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/93052c16f85254ecee3465a477f140b13c273547\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/93052c16f85254ecee3465a477f140b13c273547\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/93052c16f85254ecee3465a477f140b13c273547/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"4e14ae6ca782e552d4e076fc3b9811b0379aa716\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/4e14ae6ca782e552d4e076fc3b9811b0379aa716\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/4e14ae6ca782e552d4e076fc3b9811b0379aa716\"}]},{\"sha\":\"4e14ae6ca782e552d4e076fc3b9811b0379aa716\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:19:52Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:19:52Z\"},\"message\":\"Added base version of the code\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"88a9db1344592f7b5b7e3f26f500db43fbdc8357\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/88a9db1344592f7b5b7e3f26f500db43fbdc8357\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/4e14ae6ca782e552d4e076fc3b9811b0379aa716\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/4e14ae6ca782e552d4e076fc3b9811b0379aa716\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/4e14ae6ca782e552d4e076fc3b9811b0379aa716\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/4e14ae6ca782e552d4e076fc3b9811b0379aa716/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"db1350753778665dea51d8ccc425e31571e23e5c\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/db1350753778665dea51d8ccc425e31571e23e5c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/db1350753778665dea51d8ccc425e31571e23e5c\"}]},{\"sha\":\"db1350753778665dea51d8ccc425e31571e23e5c\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:17:49Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:17:49Z\"},\"message\":\"Added build files\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"1880fb076746754ed9b2eaccf90e7ec03003941d\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/1880fb076746754ed9b2eaccf90e7ec03003941d\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/db1350753778665dea51d8ccc425e31571e23e5c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/db1350753778665dea51d8ccc425e31571e23e5c\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/db1350753778665dea51d8ccc425e31571e23e5c\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/db1350753778665dea51d8ccc425e31571e23e5c/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[{\"sha\":\"97016ee3d0044ba95289cc9a663104ee4289d37a\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/97016ee3d0044ba95289cc9a663104ee4289d37a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/97016ee3d0044ba95289cc9a663104ee4289d37a\"}]},{\"sha\":\"97016ee3d0044ba95289cc9a663104ee4289d37a\",\"commit\":{\"author\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:17:34Z\"},\"committer\":{\"name\":\"Guyzmo\",\"email\":\"<BITBUCKET_NAMESPACE>+github@m0g.net\",\"date\":\"2016-03-21T20:17:34Z\"},\"message\":\"Initial commit: License and Readme files\\n\\nSigned-off-by: Guyzmo <<BITBUCKET_NAMESPACE>+github@m0g.net>\",\"tree\":{\"sha\":\"c1d2244c62883a83018fd28e25e660d7a38e65ea\",\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/trees/c1d2244c62883a83018fd28e25e660d7a38e65ea\"},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/git/commits/97016ee3d0044ba95289cc9a663104ee4289d37a\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/97016ee3d0044ba95289cc9a663104ee4289d37a\",\"html_url\":\"https://github.com/git-repo-test/git-repo/commit/97016ee3d0044ba95289cc9a663104ee4289d37a\",\"comments_url\":\"https://api.github.com/repos/git-repo-test/git-repo/commits/97016ee3d0044ba95289cc9a663104ee4289d37a/comments\",\"author\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[]}]" }, "headers": { "Access-Control-Allow-Origin": "*", diff --git a/tests/integration/cassettes/test_github_test_34_list__short.json b/tests/integration/cassettes/test_github_test_34_list__short.json index b41740a..e0960b2 100644 --- a/tests/integration/cassettes/test_github_test_34_list__short.json +++ b/tests/integration/cassettes/test_github_test_34_list__short.json @@ -22,7 +22,7 @@ "response": { "body": { "encoding": "utf-8", - "string": "{\"login\":\"<BITBUCKET_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>\",\"html_url\":\"https://github.com/<BITBUCKET_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<BITBUCKET_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<BITBUCKET_NAMESPACE>\",\"company\":null,\"blog\":\"http://<BITBUCKET_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":null,\"public_repos\":87,\"public_gists\":17,\"followers\":54,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-09-03T19:19:47Z\"}" + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":null,\"public_repos\":87,\"public_gists\":17,\"followers\":54,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-09-03T19:19:47Z\"}" }, "headers": { "Access-Control-Allow-Origin": "*", @@ -169,6 +169,56 @@ }, "url": "https://api.github.com/users/git-repo-test/repos?per_page=100" } + }, + { + "recorded_at": "2017-02-01T03:19:16", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/users/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Bad credentials\",\"documentation_url\":\"https://developer.github.com/v3\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "83", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 03:19:16 GMT", + "Server": "GitHub.com", + "Status": "401 Unauthorized", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A926:411B:8A179B3:AFA0A42:589153B4", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "55", + "X-RateLimit-Reset": "1485922502", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 401, + "message": "Unauthorized" + }, + "url": "https://api.github.com/users/git-repo-test" + } } ], "recorded_with": "betamax/0.5.1" diff --git a/tests/integration/cassettes/test_github_test_35_issue_label_list.json b/tests/integration/cassettes/test_github_test_35_issue_label_list.json new file mode 100644 index 0000000..3cfa862 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_35_issue_label_list.json @@ -0,0 +1,175 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T03:40:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 03:40:58 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "98E6:4114:9298539:BA8BC46:589158CA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4997", + "X-RateLimit-Reset": "1485923278", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T03:40:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/guyzmo/git-repo" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":54787116,\"name\":\"git-repo\",\"full_name\":\"guyzmo/git-repo\",\"owner\":{\"login\":\"guyzmo\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/guyzmo\",\"html_url\":\"https://github.com/guyzmo\",\"followers_url\":\"https://api.github.com/users/guyzmo/followers\",\"following_url\":\"https://api.github.com/users/guyzmo/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/guyzmo/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/guyzmo/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/guyzmo/subscriptions\",\"organizations_url\":\"https://api.github.com/users/guyzmo/orgs\",\"repos_url\":\"https://api.github.com/users/guyzmo/repos\",\"events_url\":\"https://api.github.com/users/guyzmo/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/guyzmo/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/guyzmo/git-repo\",\"description\":\"Git-Repo: CLI utility to manage git services from your workspace\",\"fork\":false,\"url\":\"https://api.github.com/repos/guyzmo/git-repo\",\"forks_url\":\"https://api.github.com/repos/guyzmo/git-repo/forks\",\"keys_url\":\"https://api.github.com/repos/guyzmo/git-repo/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/guyzmo/git-repo/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/guyzmo/git-repo/teams\",\"hooks_url\":\"https://api.github.com/repos/guyzmo/git-repo/hooks\",\"issue_events_url\":\"https://api.github.com/repos/guyzmo/git-repo/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/guyzmo/git-repo/events\",\"assignees_url\":\"https://api.github.com/repos/guyzmo/git-repo/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/guyzmo/git-repo/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/guyzmo/git-repo/tags\",\"blobs_url\":\"https://api.github.com/repos/guyzmo/git-repo/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/guyzmo/git-repo/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/guyzmo/git-repo/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/guyzmo/git-repo/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/guyzmo/git-repo/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/guyzmo/git-repo/languages\",\"stargazers_url\":\"https://api.github.com/repos/guyzmo/git-repo/stargazers\",\"contributors_url\":\"https://api.github.com/repos/guyzmo/git-repo/contributors\",\"subscribers_url\":\"https://api.github.com/repos/guyzmo/git-repo/subscribers\",\"subscription_url\":\"https://api.github.com/repos/guyzmo/git-repo/subscription\",\"commits_url\":\"https://api.github.com/repos/guyzmo/git-repo/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/guyzmo/git-repo/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/guyzmo/git-repo/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/guyzmo/git-repo/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/guyzmo/git-repo/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/guyzmo/git-repo/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/guyzmo/git-repo/merges\",\"archive_url\":\"https://api.github.com/repos/guyzmo/git-repo/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/guyzmo/git-repo/downloads\",\"issues_url\":\"https://api.github.com/repos/guyzmo/git-repo/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/guyzmo/git-repo/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/guyzmo/git-repo/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/guyzmo/git-repo/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/guyzmo/git-repo/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/guyzmo/git-repo/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/guyzmo/git-repo/deployments\",\"created_at\":\"2016-03-26T16:05:52Z\",\"updated_at\":\"2017-01-31T18:42:24Z\",\"pushed_at\":\"2017-02-01T01:32:44Z\",\"git_url\":\"git://github.com/guyzmo/git-repo.git\",\"ssh_url\":\"git@github.com:guyzmo/git-repo.git\",\"clone_url\":\"https://github.com/guyzmo/git-repo.git\",\"svn_url\":\"https://github.com/guyzmo/git-repo\",\"homepage\":\"\",\"size\":739,\"stargazers_count\":672,\"watchers_count\":672,\"language\":\"Python\",\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":30,\"mirror_url\":null,\"open_issues_count\":36,\"forks\":30,\"open_issues\":36,\"watchers\":672,\"default_branch\":\"devel\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"network_count\":30,\"subscribers_count\":21}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4607", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 03:40:58 GMT", + "ETag": "\"7beca13644457518ada72d9250726ddd\"", + "Last-Modified": "Tue, 31 Jan 2017 18:42:24 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "98E6:4114:9298549:BA8BC57:589158CA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4996", + "X-RateLimit-Reset": "1485923278", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/guyzmo/git-repo" + } + }, + { + "recorded_at": "2017-02-01T03:40:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/guyzmo/git-repo/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":396420555,\"url\":\"https://api.github.com/repos/guyzmo/git-repo/labels/backlog\",\"name\":\"backlog\",\"color\":\"ddee00\",\"default\":false},{\"id\":388981955,\"url\":\"https://api.github.com/repos/guyzmo/git-repo/labels/blocking\",\"name\":\"blocking\",\"color\":\"e99695\",\"default\":false},{\"id\":347938629,\"url\":\"https://api.github.com/repos/guyzmo/git-repo/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":388966230,\"url\":\"https://api.github.com/repos/guyzmo/git-repo/labels/design\",\"name\":\"design\",\"color\":\"fef2c0\",\"default\":false},{\"id\":347938630,\"url\":\"https://api.github.com/repos/guyzmo/git-repo/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":347938631,\"url\":\"https://api.github.com/repos/guyzmo/git-repo/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":347938632,\"url\":\"https://api.github.com/repos/guyzmo/git-repo/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":387938557,\"url\":\"https://api.github.com/repos/guyzmo/git-repo/labels/in%20progress\",\"name\":\"in progress\",\"color\":\"ededed\",\"default\":false},{\"id\":347938633,\"url\":\"https://api.github.com/repos/guyzmo/git-repo/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":347938634,\"url\":\"https://api.github.com/repos/guyzmo/git-repo/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":387939293,\"url\":\"https://api.github.com/repos/guyzmo/git-repo/labels/ready\",\"name\":\"ready\",\"color\":\"ededed\",\"default\":false},{\"id\":347938635,\"url\":\"https://api.github.com/repos/guyzmo/git-repo/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"000000\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1636", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 03:40:58 GMT", + "ETag": "\"87f8305fda5d537a2f1e454bff223286\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "98E6:4114:929855B:BA8BC6B:589158CA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4995", + "X-RateLimit-Reset": "1485923278", + "X-Served-By": "7b641bda7ec2ca7cd9df72d2578baf75", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/guyzmo/git-repo/labels?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_36_issue_milestone_list.json b/tests/integration/cassettes/test_github_test_36_issue_milestone_list.json new file mode 100644 index 0000000..e6c6a59 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_36_issue_milestone_list.json @@ -0,0 +1,175 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T03:44:27", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 03:44:27 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A194:4114:929DEB3:BA92F25:5891599B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1485923278", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T03:44:28", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/guyzmo/git-repo" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":54787116,\"name\":\"git-repo\",\"full_name\":\"guyzmo/git-repo\",\"owner\":{\"login\":\"guyzmo\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/guyzmo\",\"html_url\":\"https://github.com/guyzmo\",\"followers_url\":\"https://api.github.com/users/guyzmo/followers\",\"following_url\":\"https://api.github.com/users/guyzmo/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/guyzmo/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/guyzmo/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/guyzmo/subscriptions\",\"organizations_url\":\"https://api.github.com/users/guyzmo/orgs\",\"repos_url\":\"https://api.github.com/users/guyzmo/repos\",\"events_url\":\"https://api.github.com/users/guyzmo/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/guyzmo/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/guyzmo/git-repo\",\"description\":\"Git-Repo: CLI utility to manage git services from your workspace\",\"fork\":false,\"url\":\"https://api.github.com/repos/guyzmo/git-repo\",\"forks_url\":\"https://api.github.com/repos/guyzmo/git-repo/forks\",\"keys_url\":\"https://api.github.com/repos/guyzmo/git-repo/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/guyzmo/git-repo/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/guyzmo/git-repo/teams\",\"hooks_url\":\"https://api.github.com/repos/guyzmo/git-repo/hooks\",\"issue_events_url\":\"https://api.github.com/repos/guyzmo/git-repo/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/guyzmo/git-repo/events\",\"assignees_url\":\"https://api.github.com/repos/guyzmo/git-repo/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/guyzmo/git-repo/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/guyzmo/git-repo/tags\",\"blobs_url\":\"https://api.github.com/repos/guyzmo/git-repo/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/guyzmo/git-repo/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/guyzmo/git-repo/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/guyzmo/git-repo/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/guyzmo/git-repo/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/guyzmo/git-repo/languages\",\"stargazers_url\":\"https://api.github.com/repos/guyzmo/git-repo/stargazers\",\"contributors_url\":\"https://api.github.com/repos/guyzmo/git-repo/contributors\",\"subscribers_url\":\"https://api.github.com/repos/guyzmo/git-repo/subscribers\",\"subscription_url\":\"https://api.github.com/repos/guyzmo/git-repo/subscription\",\"commits_url\":\"https://api.github.com/repos/guyzmo/git-repo/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/guyzmo/git-repo/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/guyzmo/git-repo/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/guyzmo/git-repo/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/guyzmo/git-repo/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/guyzmo/git-repo/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/guyzmo/git-repo/merges\",\"archive_url\":\"https://api.github.com/repos/guyzmo/git-repo/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/guyzmo/git-repo/downloads\",\"issues_url\":\"https://api.github.com/repos/guyzmo/git-repo/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/guyzmo/git-repo/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/guyzmo/git-repo/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/guyzmo/git-repo/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/guyzmo/git-repo/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/guyzmo/git-repo/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/guyzmo/git-repo/deployments\",\"created_at\":\"2016-03-26T16:05:52Z\",\"updated_at\":\"2017-01-31T18:42:24Z\",\"pushed_at\":\"2017-02-01T01:32:44Z\",\"git_url\":\"git://github.com/guyzmo/git-repo.git\",\"ssh_url\":\"git@github.com:guyzmo/git-repo.git\",\"clone_url\":\"https://github.com/guyzmo/git-repo.git\",\"svn_url\":\"https://github.com/guyzmo/git-repo\",\"homepage\":\"\",\"size\":739,\"stargazers_count\":672,\"watchers_count\":672,\"language\":\"Python\",\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":30,\"mirror_url\":null,\"open_issues_count\":36,\"forks\":30,\"open_issues\":36,\"watchers\":672,\"default_branch\":\"devel\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"network_count\":30,\"subscribers_count\":21}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4607", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 03:44:28 GMT", + "ETag": "\"7beca13644457518ada72d9250726ddd\"", + "Last-Modified": "Tue, 31 Jan 2017 18:42:24 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A194:4114:929DEC8:BA92F37:5891599B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4993", + "X-RateLimit-Reset": "1485923278", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/guyzmo/git-repo" + } + }, + { + "recorded_at": "2017-02-01T03:44:28", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/guyzmo/git-repo/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/guyzmo/git-repo/milestones/2\",\"html_url\":\"https://github.com/guyzmo/git-repo/milestone/2\",\"labels_url\":\"https://api.github.com/repos/guyzmo/git-repo/milestones/2/labels\",\"id\":1788642,\"number\":2,\"title\":\"1.8\",\"description\":\"Gitlab implementations\",\"creator\":{\"login\":\"guyzmo\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/guyzmo\",\"html_url\":\"https://github.com/guyzmo\",\"followers_url\":\"https://api.github.com/users/guyzmo/followers\",\"following_url\":\"https://api.github.com/users/guyzmo/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/guyzmo/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/guyzmo/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/guyzmo/subscriptions\",\"organizations_url\":\"https://api.github.com/users/guyzmo/orgs\",\"repos_url\":\"https://api.github.com/users/guyzmo/repos\",\"events_url\":\"https://api.github.com/users/guyzmo/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/guyzmo/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":10,\"state\":\"open\",\"created_at\":\"2016-05-25T22:55:25Z\",\"updated_at\":\"2017-01-24T23:14:50Z\",\"due_on\":null,\"closed_at\":null},{\"url\":\"https://api.github.com/repos/guyzmo/git-repo/milestones/5\",\"html_url\":\"https://github.com/guyzmo/git-repo/milestone/5\",\"labels_url\":\"https://api.github.com/repos/guyzmo/git-repo/milestones/5/labels\",\"id\":1807236,\"number\":5,\"title\":\"\u221e\",\"description\":\"Milestone for all features/ideas that has not yet landed in release plan.\",\"creator\":{\"login\":\"guyzmo\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/guyzmo\",\"html_url\":\"https://github.com/guyzmo\",\"followers_url\":\"https://api.github.com/users/guyzmo/followers\",\"following_url\":\"https://api.github.com/users/guyzmo/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/guyzmo/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/guyzmo/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/guyzmo/subscriptions\",\"organizations_url\":\"https://api.github.com/users/guyzmo/orgs\",\"repos_url\":\"https://api.github.com/users/guyzmo/repos\",\"events_url\":\"https://api.github.com/users/guyzmo/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/guyzmo/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":10,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2016-06-03T13:53:59Z\",\"updated_at\":\"2017-01-22T10:33:39Z\",\"due_on\":null,\"closed_at\":null},{\"url\":\"https://api.github.com/repos/guyzmo/git-repo/milestones/6\",\"html_url\":\"https://github.com/guyzmo/git-repo/milestone/6\",\"labels_url\":\"https://api.github.com/repos/guyzmo/git-repo/milestones/6/labels\",\"id\":1813254,\"number\":6,\"title\":\"2.0\",\"description\":\"Redesign of the API and refactoring of the internals.\",\"creator\":{\"login\":\"guyzmo\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/guyzmo\",\"html_url\":\"https://github.com/guyzmo\",\"followers_url\":\"https://api.github.com/users/guyzmo/followers\",\"following_url\":\"https://api.github.com/users/guyzmo/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/guyzmo/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/guyzmo/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/guyzmo/subscriptions\",\"organizations_url\":\"https://api.github.com/users/guyzmo/orgs\",\"repos_url\":\"https://api.github.com/users/guyzmo/repos\",\"events_url\":\"https://api.github.com/users/guyzmo/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/guyzmo/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":3,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2016-06-07T12:03:31Z\",\"updated_at\":\"2017-01-22T10:27:38Z\",\"due_on\":null,\"closed_at\":null},{\"url\":\"https://api.github.com/repos/guyzmo/git-repo/milestones/3\",\"html_url\":\"https://github.com/guyzmo/git-repo/milestone/3\",\"labels_url\":\"https://api.github.com/repos/guyzmo/git-repo/milestones/3/labels\",\"id\":1788644,\"number\":3,\"title\":\"1.9\",\"description\":\"Bitbucket implementations\",\"creator\":{\"login\":\"guyzmo\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/guyzmo\",\"html_url\":\"https://github.com/guyzmo\",\"followers_url\":\"https://api.github.com/users/guyzmo/followers\",\"following_url\":\"https://api.github.com/users/guyzmo/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/guyzmo/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/guyzmo/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/guyzmo/subscriptions\",\"organizations_url\":\"https://api.github.com/users/guyzmo/orgs\",\"repos_url\":\"https://api.github.com/users/guyzmo/repos\",\"events_url\":\"https://api.github.com/users/guyzmo/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/guyzmo/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":8,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2016-05-25T22:56:03Z\",\"updated_at\":\"2016-12-29T01:02:39Z\",\"due_on\":null,\"closed_at\":null},{\"url\":\"https://api.github.com/repos/guyzmo/git-repo/milestones/7\",\"html_url\":\"https://github.com/guyzmo/git-repo/milestone/7\",\"labels_url\":\"https://api.github.com/repos/guyzmo/git-repo/milestones/7/labels\",\"id\":2214360,\"number\":7,\"title\":\"1.10\",\"description\":\"Introduction of GoGS support\",\"creator\":{\"login\":\"guyzmo\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/guyzmo\",\"html_url\":\"https://github.com/guyzmo\",\"followers_url\":\"https://api.github.com/users/guyzmo/followers\",\"following_url\":\"https://api.github.com/users/guyzmo/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/guyzmo/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/guyzmo/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/guyzmo/subscriptions\",\"organizations_url\":\"https://api.github.com/users/guyzmo/orgs\",\"repos_url\":\"https://api.github.com/users/guyzmo/repos\",\"events_url\":\"https://api.github.com/users/guyzmo/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/guyzmo/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":2,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2016-12-24T09:53:51Z\",\"updated_at\":\"2016-12-24T10:41:28Z\",\"due_on\":null,\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6565", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 03:44:28 GMT", + "ETag": "\"fd8041ff44d2c9c7c8e89be2dd8823ee\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A194:4114:929DEE2:BA92F4C:5891599C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4992", + "X-RateLimit-Reset": "1485923278", + "X-Served-By": "318e55760cf7cdb40e61175a4d36cd32", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/guyzmo/git-repo/milestones?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_37_issue_list.json b/tests/integration/cassettes/test_github_test_37_issue_list.json new file mode 100644 index 0000000..b522a99 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_37_issue_list.json @@ -0,0 +1,338 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T19:58:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 19:58:09 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B814:411B:86FA997:ABB14B1:5890EC50", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1485895946", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T19:58:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 19:58:09 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B814:411B:86FA9A7:ABB14D3:5890EC51", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4993", + "X-RateLimit-Reset": "1485895946", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T19:58:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T03:24:23Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-01-30T23:37:14Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-01-30T23:36:59Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-01-30T11:25:11Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-01-21T23:38:47Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-01-21T23:00:22Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-01-27T15:33:37Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "13564", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 19:58:09 GMT", + "ETag": "\"330bd9dafa7b7d8c882f365dbc6633a3\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B814:411B:86FA9BE:ABB14EC:5890EC51", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4992", + "X-RateLimit-Reset": "1485895946", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:21:24", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:21:23 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EA30:4118:4FED5F8:65ADAC4:58913813", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:21:24", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:21:24 GMT", + "ETag": "\"7193fc46e45c3a701c171299d15e37b5\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EA30:4118:4FED600:65ADAD3:58913813", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "76d9828c7e4f1d910f7ba069e90ce976", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:46:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Bad credentials\",\"documentation_url\":\"https://developer.github.com/v3\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "83", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:46:40 GMT", + "Server": "GitHub.com", + "Status": "401 Unauthorized", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D780:411B:89E1972:AF5C710:58914C10", + "X-RateLimit-Limit": "60", + "X-RateLimit-Remaining": "58", + "X-RateLimit-Reset": "1485918839", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 401, + "message": "Unauthorized" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_38_issue_grab.json b/tests/integration/cassettes/test_github_test_38_issue_grab.json new file mode 100644 index 0000000..e9c1c54 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_38_issue_grab.json @@ -0,0 +1,290 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T19:58:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 19:58:10 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "940E:411B:86FAA18:ABB156F:5890EC51", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4991", + "X-RateLimit-Reset": "1485895946", + "X-Served-By": "3e3b9690823fb031da84658eb58aa83b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T19:58:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 19:58:10 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "940E:411B:86FAA44:ABB1599:5890EC52", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4990", + "X-RateLimit-Reset": "1485895946", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T19:58:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"guyzmo\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T03:24:23Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"guyzmo\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2865", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 19:58:10 GMT", + "ETag": "\"3409d3b9aba168f00c883b8b63460ae1\"", + "Last-Modified": "Tue, 31 Jan 2017 03:24:23 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "940E:411B:86FAA57:ABB15C2:5890EC52", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1485895946", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T01:22:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:22:44 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A0F0:4114:91A6CD6:B95AD6C:58913864", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:22:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"guyzmo\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"guyzmo\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3030", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:22:44 GMT", + "ETag": "\"5f2865b40d83595afebca43b038b4971\"", + "Last-Modified": "Wed, 01 Feb 2017 00:44:50 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A0F0:4114:91A6CE6:B95AD7C:58913864", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_39_issue_edit.json b/tests/integration/cassettes/test_github_test_39_issue_edit.json new file mode 100644 index 0000000..0d70dbe --- /dev/null +++ b/tests/integration/cassettes/test_github_test_39_issue_edit.json @@ -0,0 +1,233 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T20:04:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://guyzmo.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 20:04:37 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "974C:4114:8F24243:B62FFE7:5890EDD5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4981", + "X-RateLimit-Reset": "1485895946", + "X-Served-By": "4c8b2d4732c413f4b9aefe394bd65569", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T20:04:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 20:04:37 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "974C:4114:8F24257:B63000D:5890EDD5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4980", + "X-RateLimit-Reset": "1485895946", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T20:04:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"coin \ud83e\udd86\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T20:04:11Z\",\"closed_at\":null,\"body_html\":\"<p>meuh \u2665<g-emoji alias=\\\"+1\\\" fallback-src=\\\"https://assets-cdn.github.com/images/icons/emoji/unicode/1f44d.png\\\" ios-version=\\\"6.0\\\">\ud83d\udc4d</g-emoji></p>\",\"body_text\":\"meuh \u2665\ud83d\udc4d\",\"body\":\"meuh \u2665\ud83d\udc4d\\n\\n\",\"closed_by\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2952", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 20:04:37 GMT", + "ETag": "\"ff06e84b5964d8d32ae7a832112c0f53\"", + "Last-Modified": "Tue, 31 Jan 2017 20:04:11 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "974C:4114:8F24272:B63002C:5890EDD5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1485895946", + "X-Served-By": "4c8b2d4732c413f4b9aefe394bd65569", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-01-31T20:04:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\"}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "67", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T20:04:38Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2865", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 20:04:38 GMT", + "ETag": "\"6f0024257f3fedb8e220b28b2b2a67ad\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "974C:4114:8F24292:B63005F:5890EDD5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1485895946", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_1_issue_get__label_missing.json b/tests/integration/cassettes/test_github_test_40_1_issue_get__label_missing.json new file mode 100644 index 0000000..02fbd60 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_1_issue_get__label_missing.json @@ -0,0 +1,175 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T11:21:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:51 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DBA0:411B:8D5EC70:B3CC988:5891C4CF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T11:21:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:52 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DBA0:411B:8D5EC8F:B3CC99E:5891C4CF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T11:21:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:11Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:52 GMT", + "ETag": "\"3ead1ecd90c3fb877bdfead0b98135c8\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DBA0:411B:8D5EC9B:B3CC9C0:5891C4D0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "13d09b732ebe76f892093130dc088652", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_1_issue_get__label_multiple.json b/tests/integration/cassettes/test_github_test_40_1_issue_get__label_multiple.json new file mode 100644 index 0000000..6dcb82a --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_1_issue_get__label_multiple.json @@ -0,0 +1,346 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T11:19:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:19:04 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D8E0:4114:95D8BC7:BEB018F:5891C428", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "139317cebd6caf9cd03889139437f00b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T11:19:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:19:04 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D8E0:4114:95D8BEA:BEB01A3:5891C428", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T11:19:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:11Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:19:05 GMT", + "ETag": "\"3ead1ecd90c3fb877bdfead0b98135c8\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D8E0:4114:95D8C02:BEB01CF:5891C428", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:19:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:19:05 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Last-Modified": "Wed, 01 Feb 2017 02:49:10 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D8E0:4114:95D8C29:BEB01F4:5891C429", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:19:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:19:05 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Last-Modified": "Wed, 01 Feb 2017 02:49:10 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D8E0:4114:95D8C3D:BEB0223:5891C429", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "7b641bda7ec2ca7cd9df72d2578baf75", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:19:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:19:05 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Last-Modified": "Wed, 01 Feb 2017 02:49:10 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D8E0:4114:95D8C54:BEB0244:5891C429", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_1_issue_get__label_none.json b/tests/integration/cassettes/test_github_test_40_1_issue_get__label_none.json new file mode 100644 index 0000000..202bbd5 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_1_issue_get__label_none.json @@ -0,0 +1,574 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T11:20:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:20:04 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8FD2:4118:5237923:6896BD4:5891C464", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T11:20:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:20:04 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8FD2:4118:5237934:6896BEA:5891C464", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T11:20:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:11Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:20:05 GMT", + "ETag": "\"3ead1ecd90c3fb877bdfead0b98135c8\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8FD2:4118:5237956:6896C10:5891C464", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:20:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:20:05 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Last-Modified": "Wed, 01 Feb 2017 02:49:11 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8FD2:4118:5237977:6896C3D:5891C465", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:20:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "585", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:20:05 GMT", + "ETag": "\"a1c2804f765c17bbde25a686c2f8e874\"", + "Last-Modified": "Wed, 01 Feb 2017 02:49:10 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8FD2:4118:5237996:6896C6F:5891C465", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:20:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "585", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:20:05 GMT", + "ETag": "\"a1c2804f765c17bbde25a686c2f8e874\"", + "Last-Modified": "Wed, 01 Feb 2017 02:49:10 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8FD2:4118:52379AB:6896C8D:5891C465", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:20:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:20:05 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Last-Modified": "Wed, 01 Feb 2017 02:49:10 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8FD2:4118:52379C7:6896CB6:5891C465", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:20:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:20:06 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Last-Modified": "Wed, 01 Feb 2017 02:49:10 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8FD2:4118:52379DC:6896CD1:5891C465", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "2d7a5e35115884240089368322196939", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:20:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:20:06 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Last-Modified": "Wed, 01 Feb 2017 02:49:10 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8FD2:4118:52379ED:6896CE8:5891C466", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "a474937f3b2fa272558fa6dc951018ad", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:20:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:20:06 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Last-Modified": "Wed, 01 Feb 2017 02:49:10 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8FD2:4118:52379F9:6896CFA:5891C466", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_1_issue_get__label_one.json b/tests/integration/cassettes/test_github_test_40_1_issue_get__label_one.json new file mode 100644 index 0000000..5ab34a7 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_1_issue_get__label_one.json @@ -0,0 +1,232 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T11:19:03", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:19:03 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8E8A:411B:8D59ECE:B3C6231:5891C426", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "593010132f82159af0ded24b4932e109", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T11:19:03", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:19:03 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8E8A:411B:8D59EF3:B3C625B:5891C427", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "139317cebd6caf9cd03889139437f00b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T11:19:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:11Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:19:03 GMT", + "ETag": "\"3ead1ecd90c3fb877bdfead0b98135c8\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8E8A:411B:8D59F15:B3C627F:5891C427", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:19:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:19:04 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Last-Modified": "Wed, 01 Feb 2017 02:49:10 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8E8A:411B:8D59F35:B3C62A9:5891C427", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_1_issue_set__label_multiple__one_issue.json b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_multiple__one_issue.json new file mode 100644 index 0000000..87ed860 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_multiple__one_issue.json @@ -0,0 +1,288 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T11:21:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:56 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91C4:4116:2809208:32B21A1:5891C4D3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "a51acaae89a7607fd7ee967627be18e4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T11:21:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:56 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91C4:4116:280920F:32B21AA:5891C4D4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T11:21:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T11:21:53Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T11:21:55Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T11:21:55Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:56 GMT", + "ETag": "\"d7b9c5ddebd25c8ba7e849597a6a689b\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91C4:4116:2809214:32B21B5:5891C4D4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "173530fed4bbeb1e264b2ed22e8b5c20", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:21:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:57 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91C4:4116:280921C:32B21BC:5891C4D4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "593010132f82159af0ded24b4932e109", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:21:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"bug\", \"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "19", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "438", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:57 GMT", + "ETag": "\"006352bd11e6e4d177084b4227e4b1bc\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91C4:4116:2809224:32B21C5:5891C4D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_1_issue_set__label_multiple__two_issues.json b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_multiple__two_issues.json new file mode 100644 index 0000000..0886ba9 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_multiple__two_issues.json @@ -0,0 +1,345 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T11:21:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:57 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DC08:4114:95DE209:BEB723D:5891C4D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T11:21:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:58 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DC08:4114:95DE21A:BEB724C:5891C4D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "c6c65e5196703428e7641f7d1e9bc353", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T11:21:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T11:21:57Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T11:21:55Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T11:21:55Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25978", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:58 GMT", + "ETag": "\"6b9f3a8f9e93da4954525db2ec004236\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DC08:4114:95DE236:BEB726E:5891C4D6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "593010132f82159af0ded24b4932e109", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:21:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:58 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DC08:4114:95DE25C:BEB7296:5891C4D6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "e183f7c661b1bbc2c987b3c4dc7b04e0", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:21:59", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"bug\", \"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "19", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "585", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:59 GMT", + "ETag": "\"a1c2804f765c17bbde25a686c2f8e874\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DC08:4114:95DE268:BEB72B9:5891C4D6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "173530fed4bbeb1e264b2ed22e8b5c20", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + } + }, + { + "recorded_at": "2017-02-01T11:21:59", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"bug\", \"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "19", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "585", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:59 GMT", + "ETag": "\"a1c2804f765c17bbde25a686c2f8e874\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DC08:4114:95DE2C8:BEB7325:5891C4D7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_1_issue_set__label_multiple_w_not_exists.json b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_multiple_w_not_exists.json new file mode 100644 index 0000000..d317a62 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_multiple_w_not_exists.json @@ -0,0 +1,288 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T11:22:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:05 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DC4A:411B:8D5F241:B3CD132:5891C4DD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T11:22:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:06 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DC4A:411B:8D5F253:B3CD152:5891C4DD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T11:22:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T11:22:01Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T11:22:02Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T11:22:03Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T11:22:03Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T11:22:03Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T11:22:04Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T11:22:05Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "26123", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:06 GMT", + "ETag": "\"b574b2febea33bb86a49355e2d78ff77\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DC4A:411B:8D5F274:B3CD17B:5891C4DE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4905", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:22:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:06 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DC4A:411B:8D5F28F:B3CD18E:5891C4DE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:22:07", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"bug\", \"question\", \"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "30", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "583", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:07 GMT", + "ETag": "\"464253378d843fe1b83a44b6c0db8d90\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DC4A:411B:8D5F2A9:B3CD1C2:5891C4DE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "474556b853193c38f1b14328ce2d1b7d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_1_issue_set__label_not_exists.json b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_not_exists.json new file mode 100644 index 0000000..1cdbb34 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_not_exists.json @@ -0,0 +1,630 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T11:22:00", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:00 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91EE:411B:8D5EFCC:B3CCDF7:5891C4D8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "bae57931a6fe678a3dffe9be8e7819c8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T11:22:00", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:00 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91EE:411B:8D5F013:B3CCE4F:5891C4D8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T11:22:01", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T11:21:57Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T11:21:59Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T11:21:59Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25978", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:01 GMT", + "ETag": "\"f9edc0b11f21beed3cb4e109d58a9352\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91EE:411B:8D5F02C:B3CCE82:5891C4D8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:22:01", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:01 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91EE:411B:8D5F054:B3CCEB2:5891C4D9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:22:02", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "11", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "583", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:01 GMT", + "ETag": "\"464253378d843fe1b83a44b6c0db8d90\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91EE:411B:8D5F06E:B3CCED5:5891C4D9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-02-01T11:22:02", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "11", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "585", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:02 GMT", + "ETag": "\"a1c2804f765c17bbde25a686c2f8e874\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91EE:411B:8D5F0B1:B3CCF21:5891C4D9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + } + }, + { + "recorded_at": "2017-02-01T11:22:03", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "11", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "585", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:03 GMT", + "ETag": "\"a1c2804f765c17bbde25a686c2f8e874\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91EE:411B:8D5F11C:B3CCFA2:5891C4DA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "8dd185e423974a7e13abbbe6e060031e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + } + }, + { + "recorded_at": "2017-02-01T11:22:03", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "11", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:03 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91EE:411B:8D5F13B:B3CCFEE:5891C4DB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "a7f8a126c9ed3f1c4715a34c0ddc7290", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + } + }, + { + "recorded_at": "2017-02-01T11:22:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "11", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:04 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91EE:411B:8D5F16E:B3CD02A:5891C4DB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + } + }, + { + "recorded_at": "2017-02-01T11:22:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "11", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:04 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91EE:411B:8D5F1A9:B3CD067:5891C4DC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "bae57931a6fe678a3dffe9be8e7819c8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + } + }, + { + "recorded_at": "2017-02-01T11:22:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "11", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:05 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "91EE:411B:8D5F1EB:B3CD0AF:5891C4DC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_1_issue_set__label_single__one_issue.json b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_single__one_issue.json new file mode 100644 index 0000000..24a6dc4 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_single__one_issue.json @@ -0,0 +1,288 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T11:21:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:52 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "918E:411B:8D5ECDB:B3CCA20:5891C4D0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T11:21:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:53 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "918E:411B:8D5ECFA:B3CCA32:5891C4D0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T11:21:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:11Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:53 GMT", + "ETag": "\"3ead1ecd90c3fb877bdfead0b98135c8\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "918E:411B:8D5ED0B:B3CCA59:5891C4D1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "a51acaae89a7607fd7ee967627be18e4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:21:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:53 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "918E:411B:8D5ED26:B3CCA74:5891C4D1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:21:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:53 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "918E:411B:8D5ED34:B3CCA93:5891C4D1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "46808ddc41c302090177e58148908b23", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_1_issue_set__label_single__two_issues.json b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_single__two_issues.json new file mode 100644 index 0000000..7c804db --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_single__two_issues.json @@ -0,0 +1,345 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T11:21:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:54 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DBDC:4114:95DE041:BEB6FF5:5891C4D1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "3e3b9690823fb031da84658eb58aa83b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T11:21:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:54 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DBDC:4114:95DE056:BEB700C:5891C4D2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "a474937f3b2fa272558fa6dc951018ad", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T11:21:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T11:21:53Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:54 GMT", + "ETag": "\"32933015d584297593f63274250e4f52\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DBDC:4114:95DE06D:BEB702B:5891C4D2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:21:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:55 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DBDC:4114:95DE09F:BEB7050:5891C4D2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "ef96c2e493b28ffea49b891b085ed2dd", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:21:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "585", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:55 GMT", + "ETag": "\"a1c2804f765c17bbde25a686c2f8e874\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DBDC:4114:95DE0B9:BEB7085:5891C4D3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + } + }, + { + "recorded_at": "2017-02-01T11:21:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "585", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:21:55 GMT", + "ETag": "\"a1c2804f765c17bbde25a686c2f8e874\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DBDC:4114:95DE0EE:BEB70CD:5891C4D3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_1_issue_set__label_with_spaces.json b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_with_spaces.json new file mode 100644 index 0000000..e697ccb --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_1_issue_set__label_with_spaces.json @@ -0,0 +1,288 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T11:22:07", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:07 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "9228:4118:5239D72:6899B1D:5891C4DF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T11:22:08", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:08 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "9228:4118:5239D7B:6899B24:5891C4DF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T11:22:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T11:22:07Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T11:22:02Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T11:22:03Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T11:22:03Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T11:22:03Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T11:22:04Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T11:22:05Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "26123", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:08 GMT", + "ETag": "\"5d5d314ee5cd82da491a4f157f2f4b1d\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "9228:4118:5239D92:6899B3D:5891C4E0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "7b641bda7ec2ca7cd9df72d2578baf75", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:22:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:09 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "9228:4118:5239DCB:6899B7F:5891C4E0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:22:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"help wanted\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "15", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "POST", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "738", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:22:09 GMT", + "ETag": "\"291ab6f6b8edba3e626b18e709eac993\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "9228:4118:5239DD8:6899BA2:5891C4E1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1485948367", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_multiple.json b/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_multiple.json new file mode 100644 index 0000000..22e904e --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_multiple.json @@ -0,0 +1,1895 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T22:37:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:55 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831915:AD3A967:589111C3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a7f8a126c9ed3f1c4715a34c0ddc7290", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T22:37:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:55 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:883192C:AD3A991:589111C3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T22:37:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T22:37:51Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-01-31T22:37:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-01-31T22:37:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-01-31T22:37:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-01-31T22:37:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-01-31T22:37:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-01-31T22:37:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "16480", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:56 GMT", + "ETag": "\"41c0463d987d72e230737f7514ba5580\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831953:AD3A9AE:589111C3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "139317cebd6caf9cd03889139437f00b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:56 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831996:AD3A9E1:589111C4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:56 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:88319AF:AD3AA2C:589111C4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:37:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "454", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:57 GMT", + "ETag": "\"2561bf5a7980fae6c1038c571cd9ed06\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:88319D1:AD3AA47:589111C4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:37:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:57 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:88319F5:AD3AA7B:589111C5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "3e3b9690823fb031da84658eb58aa83b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:57 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831A14:AD3AAA5:589111C5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:37:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:57 GMT", + "ETag": "\"14dd083934e20d52cd59453c7c1bdd81\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831A46:AD3AAD0:589111C5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:37:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:58 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831A6A:AD3AB08:589111C5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "9e60649f02cd840ee8baa9960690f79f", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:58 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831AA0:AD3AB35:589111C6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:37:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:58 GMT", + "ETag": "\"14dd083934e20d52cd59453c7c1bdd81\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831AB9:AD3AB7A:589111C6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:37:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:58 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831AD5:AD3ABA6:589111C6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "9000e9eef7bb1e89f22030c676da140e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:59", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:59 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831AEB:AD3ABBA:589111C6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:37:59", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:59 GMT", + "ETag": "\"14dd083934e20d52cd59453c7c1bdd81\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831B11:AD3ABD3:589111C7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "c6c65e5196703428e7641f7d1e9bc353", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:37:59", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:59 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831B46:AD3AC0B:589111C7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "76d9828c7e4f1d910f7ba069e90ce976", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:00", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:59 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831B5A:AD3AC44:589111C7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:38:00", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:00 GMT", + "ETag": "\"14dd083934e20d52cd59453c7c1bdd81\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831B90:AD3AC5C:589111C7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "9000e9eef7bb1e89f22030c676da140e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:38:00", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:00 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831BBC:AD3ACB5:589111C8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:00", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:00 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831BD4:AD3ACD8:589111C8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:38:01", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:01 GMT", + "ETag": "\"14dd083934e20d52cd59453c7c1bdd81\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831BF1:AD3ACFC:589111C8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "173530fed4bbeb1e264b2ed22e8b5c20", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:38:01", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:01 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831C4B:AD3AD31:589111C9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:01", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:01 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831C6B:AD3AD9C:589111C9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:38:02", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:02 GMT", + "ETag": "\"14dd083934e20d52cd59453c7c1bdd81\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CCFC:411B:8831C9C:AD3ADDB:589111C9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/bug" + } + }, + { + "recorded_at": "2017-02-01T01:26:32", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:32 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3CE:411B:895C19B:AEB431D:58913948", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4890", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:26:32", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:26:31Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:26:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24800", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:32 GMT", + "ETag": "\"b7de2bb4d500514d1e98822d254e8124\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3CE:411B:895C1B0:AEB433C:58913948", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4889", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:32", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:32 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3CE:411B:895C1D5:AEB435A:58913948", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4888", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:32", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "454", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:32 GMT", + "ETag": "\"2561bf5a7980fae6c1038c571cd9ed06\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3CE:411B:895C1E9:AEB437D:58913948", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4887", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "ef96c2e493b28ffea49b891b085ed2dd", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/bug" + } + }, + { + "recorded_at": "2017-02-01T01:26:33", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:33 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3CE:411B:895C1F8:AEB4394:58913948", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4886", + "X-RateLimit-Reset": "1485914157", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + } + }, + { + "recorded_at": "2017-02-01T02:48:36", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:36 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5DE:4118:503B39E:6610EC1:58914C83", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "7b641bda7ec2ca7cd9df72d2578baf75", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:36", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:35Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:30Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25201", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:36 GMT", + "ETag": "\"cfebb1dff599f671cf9e3c3cde229799\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5DE:4118:503B3B0:6610ECD:58914C84", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:36", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:36 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5DE:4118:503B3BE:6610EE9:58914C84", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "318e55760cf7cdb40e61175a4d36cd32", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:37 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5DE:4118:503B3C7:6610EFA:58914C84", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1485917758", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + } + }, + { + "recorded_at": "2017-02-01T02:48:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "454", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:37 GMT", + "ETag": "\"2561bf5a7980fae6c1038c571cd9ed06\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5DE:4118:503B3CF:6610F04:58914C85", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/bug" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_multiple_w_not_exists.json b/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_multiple_w_not_exists.json new file mode 100644 index 0000000..67b56bf --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_multiple_w_not_exists.json @@ -0,0 +1,2336 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T22:38:08", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:08 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:9065070:B7C62BC:589111CF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T22:38:08", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:08 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:906509A:B7C62ED:589111D0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T22:38:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T22:38:04Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-01-31T22:38:05Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-01-31T22:38:05Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-01-31T22:38:06Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-01-31T22:38:06Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-01-31T22:38:07Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-01-31T22:38:07Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "14506", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:08 GMT", + "ETag": "\"5f62ed00c1c76dcb20cb3574658c08c8\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:90650BA:B7C6313:589111D0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2c18a09f3ac5e4dd1e004af7c5a94769", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:09 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:9065113:B7C6346:589111D0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:09 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:9065143:B7C639E:589111D1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:38:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:09 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:9065159:B7C63E0:589111D1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:38:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:10 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:906517A:B7C63FF:589111D1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/invalid" + } + }, + { + "recorded_at": "2017-01-31T22:38:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:10 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:90651C6:B7C6428:589111D2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "318e55760cf7cdb40e61175a4d36cd32", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:10 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:90651D8:B7C6484:589111D2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:38:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:10 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:9065206:B7C64A8:589111D2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:38:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:11 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:9065230:B7C64E9:589111D2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/invalid" + } + }, + { + "recorded_at": "2017-01-31T22:38:11", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:11 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:9065254:B7C650D:589111D3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "9000e9eef7bb1e89f22030c676da140e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:11", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:11 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:906526F:B7C6535:589111D3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:38:11", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:11 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:90652B3:B7C6557:589111D3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:38:11", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:11 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:90652C9:B7C659F:589111D3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/invalid" + } + }, + { + "recorded_at": "2017-01-31T22:38:12", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:12 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:90652E4:B7C65C3:589111D3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4905", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:12", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:12 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:9065306:B7C65EC:589111D4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:38:12", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:12 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:9065323:B7C660F:589111D4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:38:12", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:12 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:9065347:B7C6639:589111D4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/invalid" + } + }, + { + "recorded_at": "2017-01-31T22:38:13", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:13 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:906538C:B7C6667:589111D4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "e724c57ebb9961c772a91e2dd7421c8d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:13", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:13 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:90653AE:B7C66C3:589111D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:38:13", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:13 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:90653EF:B7C66E8:589111D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:38:14", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:13 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:906540E:B7C6737:589111D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/invalid" + } + }, + { + "recorded_at": "2017-01-31T22:38:14", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:14 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:906544D:B7C675E:589111D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:14", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:14 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:9065474:B7C67B0:589111D6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4896", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:38:14", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:14 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:906548D:B7C67CE:589111D6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4895", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:38:14", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:15 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:90654A5:B7C67EC:589111D6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/invalid" + } + }, + { + "recorded_at": "2017-01-31T22:38:15", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:15 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:90654C1:B7C6812:589111D7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4893", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:15", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:15 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:90654DF:B7C6836:589111D7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4892", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:38:15", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:15 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:90654FB:B7C685B:589111D7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4891", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/bug" + } + }, + { + "recorded_at": "2017-01-31T22:38:15", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:15 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD34:4114:9065527:B7C687D:589111D7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4890", + "X-RateLimit-Reset": "1485902575", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/invalid" + } + }, + { + "recorded_at": "2017-02-01T01:26:34", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:34 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3E6:411B:895C294:AEB444A:5891394A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4881", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:26:34", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:26:34Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:26:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24518", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:34 GMT", + "ETag": "\"afeecefc4bb159123a7d372b25e50a88\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3E6:411B:895C29D:AEB4457:5891394A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4880", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:34 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3E6:411B:895C2B6:AEB4465:5891394A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4879", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:35 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3E6:411B:895C2C8:AEB4488:5891394A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4878", + "X-RateLimit-Reset": "1485914157", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/invalid" + } + }, + { + "recorded_at": "2017-02-01T01:26:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:35 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3E6:411B:895C2D5:AEB449F:5891394B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4877", + "X-RateLimit-Reset": "1485914157", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/bug" + } + }, + { + "recorded_at": "2017-02-01T01:26:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:35 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3E6:411B:895C2E5:AEB44B1:5891394B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4876", + "X-RateLimit-Reset": "1485914157", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + } + }, + { + "recorded_at": "2017-02-01T02:48:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:39 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B604:4114:924149F:BA1D6F8:58914C87", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:38Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:30Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24919", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:39 GMT", + "ETag": "\"8e8debabcff1e0021dd7406f48c0f9be\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B604:4114:92414B5:BA1D714:58914C87", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:39 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B604:4114:92414D9:BA1D72D:58914C87", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:39 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B604:4114:92414E3:BA1D74D:58914C87", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1485917758", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + } + }, + { + "recorded_at": "2017-02-01T02:48:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/bug" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:40 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B604:4114:92414FE:BA1D75B:58914C87", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1485917758", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/bug" + } + }, + { + "recorded_at": "2017-02-01T02:48:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Content-Length": "132", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:40 GMT", + "Server": "GitHub.com", + "Status": "404 Not Found", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B604:4114:9241508:BA1D77D:58914C88", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1485917758", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 404, + "message": "Not Found" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/invalid" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_not_exists.json b/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_not_exists.json new file mode 100644 index 0000000..5802b84 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_not_exists.json @@ -0,0 +1,1418 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T22:38:03", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:03 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831D19:AD3AE78:589111CA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "9e60649f02cd840ee8baa9960690f79f", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T22:38:03", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:03 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831D4E:AD3AE98:589111CB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T22:38:03", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T22:37:57Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-01-31T22:37:57Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-01-31T22:37:58Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-01-31T22:37:59Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-01-31T22:38:00Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-01-31T22:38:01Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-01-31T22:38:02Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "15521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:03 GMT", + "ETag": "\"33f07ecee3d83b1c63efd90d83a55104\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831D6E:AD3AEE4:589111CB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:04 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831DB2:AD3AF0F:589111CB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "309", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:04 GMT", + "ETag": "\"0dde561490a6e674ff283e9c9a5df424\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831DD9:AD3AF5B:589111CC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "173530fed4bbeb1e264b2ed22e8b5c20", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/invalid" + } + }, + { + "recorded_at": "2017-01-31T22:38:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:04 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831DFB:AD3AF96:589111CC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "3e3b9690823fb031da84658eb58aa83b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "156", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:05 GMT", + "ETag": "\"a04cf8141a5fa6446906ac6878fd2e58\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831E28:AD3AFD3:589111CC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a474937f3b2fa272558fa6dc951018ad", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/invalid" + } + }, + { + "recorded_at": "2017-01-31T22:38:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:05 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831E59:AD3AFF7:589111CD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "156", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:05 GMT", + "ETag": "\"a04cf8141a5fa6446906ac6878fd2e58\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831E7C:AD3B032:589111CD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/invalid" + } + }, + { + "recorded_at": "2017-01-31T22:38:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:06 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831EA9:AD3B06C:589111CD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "173530fed4bbeb1e264b2ed22e8b5c20", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "156", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:06 GMT", + "ETag": "\"a04cf8141a5fa6446906ac6878fd2e58\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831ECC:AD3B09F:589111CE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/invalid" + } + }, + { + "recorded_at": "2017-01-31T22:38:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:06 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831EE9:AD3B0CD:589111CE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "156", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:06 GMT", + "ETag": "\"a04cf8141a5fa6446906ac6878fd2e58\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831F0C:AD3B0EF:589111CE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/invalid" + } + }, + { + "recorded_at": "2017-01-31T22:38:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:06 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831F25:AD3B114:589111CE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:07", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "156", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:07 GMT", + "ETag": "\"a04cf8141a5fa6446906ac6878fd2e58\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831F37:AD3B12B:589111CE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/invalid" + } + }, + { + "recorded_at": "2017-01-31T22:38:07", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:07 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831F62:AD3B14D:589111CF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2c18a09f3ac5e4dd1e004af7c5a94769", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:07", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "156", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:07 GMT", + "ETag": "\"a04cf8141a5fa6446906ac6878fd2e58\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "82E4:411B:8831F81:AD3B17D:589111CF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "8dd185e423974a7e13abbbe6e060031e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/invalid" + } + }, + { + "recorded_at": "2017-02-01T01:26:33", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:33 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE12:4114:91AD9CC:B963642:58913949", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4885", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:26:33", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:26:32Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:26:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24663", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:33 GMT", + "ETag": "\"43f990531371ac3ca8942f28f626a493\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE12:4114:91AD9D3:B96364C:58913949", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4884", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "2d7a5e35115884240089368322196939", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:33", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:33 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE12:4114:91AD9E7:B96365A:58913949", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4883", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "9e60649f02cd840ee8baa9960690f79f", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:34", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "309", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:34 GMT", + "ETag": "\"0dde561490a6e674ff283e9c9a5df424\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE12:4114:91AD9F1:B963678:58913949", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4882", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "2c18a09f3ac5e4dd1e004af7c5a94769", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/invalid" + } + }, + { + "recorded_at": "2017-02-01T02:48:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:37 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA02:411B:89E4F1B:AF60982:58914C85", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:37Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:30Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25064", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:38 GMT", + "ETag": "\"3c54ce0112c935373a02e642a971924f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA02:411B:89E4F39:AF60997:58914C85", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "3e3b9690823fb031da84658eb58aa83b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:38 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA02:411B:89E4F5B:AF609CC:58914C86", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/invalid" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "309", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:38 GMT", + "ETag": "\"0dde561490a6e674ff283e9c9a5df424\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA02:411B:89E4F67:AF609F2:58914C86", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/invalid" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_single.json b/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_single.json new file mode 100644 index 0000000..8da84f9 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_single.json @@ -0,0 +1,1418 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T22:37:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:50 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:90645B7:B7C5513:589111BD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "76d9828c7e4f1d910f7ba069e90ce976", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T22:37:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:50 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:90645D7:B7C555E:589111BE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T22:37:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T22:37:41Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-01-31T22:37:41Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-01-31T22:37:42Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-01-31T22:37:42Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-01-31T22:37:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-01-31T22:37:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-01-31T22:37:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "17509", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:50 GMT", + "ETag": "\"37d118c9f8369b886f8c7c938eb7e3f2\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:90645FA:B7C5586:589111BE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:51 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:906462E:B7C55BB:589111BE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "591", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:51 GMT", + "ETag": "\"9e7b9e2193737b94d122d4debf7f7d36\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:9064675:B7C55F4:589111BF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:37:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:51 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:90646B7:B7C5664:589111BF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "e724c57ebb9961c772a91e2dd7421c8d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "438", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:52 GMT", + "ETag": "\"fa8b3f21134ac5aadd9eab8b5c4e2619\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:90646D5:B7C5695:589111BF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a7f8a126c9ed3f1c4715a34c0ddc7290", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:37:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:52 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:9064701:B7C56B7:589111C0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "76d9828c7e4f1d910f7ba069e90ce976", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "438", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:52 GMT", + "ETag": "\"fa8b3f21134ac5aadd9eab8b5c4e2619\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:9064723:B7C56EB:589111C0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "bae57931a6fe678a3dffe9be8e7819c8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:37:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:52 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:9064760:B7C5723:589111C0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "438", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:53 GMT", + "ETag": "\"fa8b3f21134ac5aadd9eab8b5c4e2619\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:9064778:B7C5762:589111C0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:37:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:53 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:90647B0:B7C578E:589111C1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "438", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:53 GMT", + "ETag": "\"fa8b3f21134ac5aadd9eab8b5c4e2619\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:90647C9:B7C57BF:589111C1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "46808ddc41c302090177e58148908b23", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:37:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:53 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:90647E4:B7C57E7:589111C1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "9e60649f02cd840ee8baa9960690f79f", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "438", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:54 GMT", + "ETag": "\"fa8b3f21134ac5aadd9eab8b5c4e2619\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:9064815:B7C5803:589111C1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/question" + } + }, + { + "recorded_at": "2017-01-31T22:37:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:54 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:906483C:B7C5849:589111C2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:37:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "438", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:37:54 GMT", + "ETag": "\"fa8b3f21134ac5aadd9eab8b5c4e2619\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8296:4114:9064855:B7C5871:589111C2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/question" + } + }, + { + "recorded_at": "2017-02-01T01:26:31", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:31 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EDFA:4114:91AD90B:B963546:58913946", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:26:31", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:26:30Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:26:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24947", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:31 GMT", + "ETag": "\"3114c0aa541a5a4a6b9d05bfdd879092\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EDFA:4114:91AD916:B963559:58913947", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4893", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:31", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:31 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EDFA:4114:91AD92C:B963566:58913947", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4892", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "76d9828c7e4f1d910f7ba069e90ce976", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:31", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "591", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:31 GMT", + "ETag": "\"9e7b9e2193737b94d122d4debf7f7d36\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EDFA:4114:91AD937:B96357E:58913947", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4891", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + } + }, + { + "recorded_at": "2017-02-01T02:48:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:35 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9E0:4114:9241230:BA1D40B:58914C82", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:34Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:30Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25348", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:35 GMT", + "ETag": "\"3350936138d8815ff5e81257047b1704\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9E0:4114:9241242:BA1D418:58914C83", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "9e60649f02cd840ee8baa9960690f79f", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:35 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9E0:4114:924125C:BA1D429:58914C83", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "591", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:35 GMT", + "ETag": "\"9e7b9e2193737b94d122d4debf7f7d36\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9E0:4114:9241270:BA1D451:58914C83", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "a474937f3b2fa272558fa6dc951018ad", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/question" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_with_spaces.json b/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_with_spaces.json new file mode 100644 index 0000000..43ad061 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_2_issue_unset__label_with_spaces.json @@ -0,0 +1,1418 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T22:38:16", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:16 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:906558F:B7C691F:589111D8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4889", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T22:38:17", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:17 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:90655C1:B7C693B:589111D8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4888", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T22:38:17", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T22:38:04Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-01-31T22:38:05Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-01-31T22:38:05Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-01-31T22:38:06Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-01-31T22:38:06Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-01-31T22:38:07Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-01-31T22:38:07Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "14506", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:17 GMT", + "ETag": "\"5f62ed00c1c76dcb20cb3574658c08c8\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:90655D5:B7C6973:589111D9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4887", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:17", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:17 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:9065619:B7C698B:589111D9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4886", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:18", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/help%20wanted" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "154", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:18 GMT", + "ETag": "\"9fbc38679d158820cc75bf4cba3fb924\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:9065633:B7C69DF:589111D9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4885", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7b641bda7ec2ca7cd9df72d2578baf75", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/help%20wanted" + } + }, + { + "recorded_at": "2017-01-31T22:38:18", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:18 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:9065686:B7C6A16:589111DA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4884", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:18", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/help%20wanted" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:18 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:906569F:B7C6A71:589111DA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4883", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "318e55760cf7cdb40e61175a4d36cd32", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels/help%20wanted" + } + }, + { + "recorded_at": "2017-01-31T22:38:19", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:18 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:90656CB:B7C6AA5:589111DA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4882", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:19", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/help%20wanted" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:19 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:90656FE:B7C6AC9:589111DA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4881", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels/help%20wanted" + } + }, + { + "recorded_at": "2017-01-31T22:38:19", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:19 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:9065726:B7C6B0D:589111DB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4880", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:19", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/help%20wanted" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:19 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:906575C:B7C6B33:589111DB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4879", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels/help%20wanted" + } + }, + { + "recorded_at": "2017-01-31T22:38:20", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:20 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:9065770:B7C6B79:589111DB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4878", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:20", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/help%20wanted" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:20 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:90657B0:B7C6B9B:589111DC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4877", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "474556b853193c38f1b14328ce2d1b7d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels/help%20wanted" + } + }, + { + "recorded_at": "2017-01-31T22:38:20", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:20 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:90657DF:B7C6BE6:589111DC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4876", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:20", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/help%20wanted" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:20 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:90657FD:B7C6C13:589111DC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4875", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "ef96c2e493b28ffea49b891b085ed2dd", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels/help%20wanted" + } + }, + { + "recorded_at": "2017-01-31T22:38:21", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:21 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:9065827:B7C6C41:589111DC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4874", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:21", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/help%20wanted" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:21 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8328:4114:9065850:B7C6C6E:589111DD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4873", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels/help%20wanted" + } + }, + { + "recorded_at": "2017-02-01T01:26:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:35 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE22:4116:26F51D1:3154FD9:5891394B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4875", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:26:36", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:26:34Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:26:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24518", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:35 GMT", + "ETag": "\"afeecefc4bb159123a7d372b25e50a88\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE22:4116:26F51D6:3154FDF:5891394B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4874", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:36", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:36 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE22:4116:26F51DE:3154FE7:5891394B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4873", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:36", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/help%20wanted" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "154", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:36 GMT", + "ETag": "\"9fbc38679d158820cc75bf4cba3fb924\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE22:4116:26F51E4:3154FEC:5891394C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4872", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "c6c65e5196703428e7641f7d1e9bc353", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/help%20wanted" + } + }, + { + "recorded_at": "2017-02-01T02:48:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:40 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA24:4118:503B4A6:6611017:58914C88", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:38Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:30Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24919", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:41 GMT", + "ETag": "\"8e8debabcff1e0021dd7406f48c0f9be\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA24:4118:503B4BB:6611022:58914C88", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "4c8b2d4732c413f4b9aefe394bd65569", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:41 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA24:4118:503B4C9:6611039:58914C89", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "DELETE", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/help%20wanted" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "154", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:41 GMT", + "ETag": "\"9fbc38679d158820cc75bf4cba3fb924\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA24:4118:503B4CF:661104A:58914C89", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels/help%20wanted" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label__filter.json b/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label__filter.json new file mode 100644 index 0000000..748f7be --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label__filter.json @@ -0,0 +1,1996 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T01:28:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:51 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FAF9:AEB8B63:589139D3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4846", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "9000e9eef7bb1e89f22030c676da140e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T01:28:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:51 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FB07:AEB8B70:589139D3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4845", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "318e55760cf7cdb40e61175a4d36cd32", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:28:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&labels=question&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:26:42Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:26:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24665", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:52 GMT", + "ETag": "\"3779fa9095f82f183fe88cd21ef06579\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FB24:AEB8B89:589139D3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4844", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&labels=question&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:28:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:52 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FB48:AEB8BAD:589139D4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4843", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:28:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "456", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:52 GMT", + "ETag": "\"bb81a242280b09d9fa338448503edb59\"", + "Last-Modified": "Wed, 01 Feb 2017 01:26:42 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FB55:AEB8BCA:589139D4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4842", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "46808ddc41c302090177e58148908b23", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:28:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"enhancement\", \"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:52 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FB63:AEB8BDB:589139D4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4841", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "76d9828c7e4f1d910f7ba069e90ce976", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-02-01T01:28:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "585", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:52 GMT", + "ETag": "\"a1c2804f765c17bbde25a686c2f8e874\"", + "Last-Modified": "Wed, 01 Feb 2017 01:26:27 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FB76:AEB8BF7:589139D4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4840", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:28:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"question\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "30", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "430", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:53 GMT", + "ETag": "\"055912b0676f636e89de6b48e2739662\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FB88:AEB8C0A:589139D4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4839", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + } + }, + { + "recorded_at": "2017-02-01T01:28:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "585", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:53 GMT", + "ETag": "\"a1c2804f765c17bbde25a686c2f8e874\"", + "Last-Modified": "Wed, 01 Feb 2017 01:26:28 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FBA6:AEB8C2A:589139D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4838", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:28:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"question\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "30", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "430", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:53 GMT", + "ETag": "\"055912b0676f636e89de6b48e2739662\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FBB5:AEB8C3F:589139D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4837", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + } + }, + { + "recorded_at": "2017-02-01T01:28:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:53 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Last-Modified": "Wed, 01 Feb 2017 01:26:28 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FBCF:AEB8C5E:589139D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4836", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:28:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "23", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "293", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:53 GMT", + "ETag": "\"10937104c113476af937ae618a73cae7\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FBE4:AEB8C71:589139D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4835", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + } + }, + { + "recorded_at": "2017-02-01T01:28:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:53 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Last-Modified": "Wed, 01 Feb 2017 01:26:28 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FBFC:AEB8C92:589139D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4834", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:28:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "23", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "293", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:53 GMT", + "ETag": "\"10937104c113476af937ae618a73cae7\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FC0B:AEB8CAD:589139D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4833", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + } + }, + { + "recorded_at": "2017-02-01T01:28:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:54 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Last-Modified": "Wed, 01 Feb 2017 01:26:28 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FC1D:AEB8CC4:589139D5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4832", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "4c8b2d4732c413f4b9aefe394bd65569", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:28:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "23", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "293", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:54 GMT", + "ETag": "\"10937104c113476af937ae618a73cae7\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FC2D:AEB8CD8:589139D6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4831", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + } + }, + { + "recorded_at": "2017-02-01T01:28:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:54 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Last-Modified": "Wed, 01 Feb 2017 01:26:28 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FC3B:AEB8CE7:589139D6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4830", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "c6c65e5196703428e7641f7d1e9bc353", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:28:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "23", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "293", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:28:54 GMT", + "ETag": "\"10937104c113476af937ae618a73cae7\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8186:411B:895FC55:AEB8CFB:589139D6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4829", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "139317cebd6caf9cd03889139437f00b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + } + }, + { + "recorded_at": "2017-02-01T02:48:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:50 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B6B3:661129D:58914C91", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&labels=question&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:49Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:30Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25066", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:50 GMT", + "ETag": "\"a6c50f5f2c34d29b4451b6977fbd8662\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B6C4:66112A5:58914C92", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "7b641bda7ec2ca7cd9df72d2578baf75", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&labels=question&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:50 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B6D2:66112B9:58914C92", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4896", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "2c18a09f3ac5e4dd1e004af7c5a94769", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "456", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:50 GMT", + "ETag": "\"bb81a242280b09d9fa338448503edb59\"", + "Last-Modified": "Wed, 01 Feb 2017 02:48:49 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B6D7:66112C7:58914C92", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4895", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"enhancement\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:51 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B6E3:66112CB:58914C92", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-02-01T02:48:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "430", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:51 GMT", + "ETag": "\"055912b0676f636e89de6b48e2739662\"", + "Last-Modified": "Wed, 01 Feb 2017 02:48:30 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B6EA:66112DE:58914C93", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4893", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\", \"bug\", \"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "45", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "585", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:51 GMT", + "ETag": "\"a1c2804f765c17bbde25a686c2f8e874\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B6F3:66112E7:58914C93", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4892", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + } + }, + { + "recorded_at": "2017-02-01T02:48:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "430", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:51 GMT", + "ETag": "\"055912b0676f636e89de6b48e2739662\"", + "Last-Modified": "Wed, 01 Feb 2017 02:48:31 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B6F7:66112EE:58914C93", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4891", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\", \"bug\", \"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "45", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "585", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:51 GMT", + "ETag": "\"a1c2804f765c17bbde25a686c2f8e874\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B6FF:66112F3:58914C93", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4890", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "7b641bda7ec2ca7cd9df72d2578baf75", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + } + }, + { + "recorded_at": "2017-02-01T02:48:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "293", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:51 GMT", + "ETag": "\"10937104c113476af937ae618a73cae7\"", + "Last-Modified": "Wed, 01 Feb 2017 02:48:31 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B703:66112FC:58914C93", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4889", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\", \"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "38", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:52 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B709:6611304:58914C93", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4888", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + } + }, + { + "recorded_at": "2017-02-01T02:48:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "293", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:52 GMT", + "ETag": "\"10937104c113476af937ae618a73cae7\"", + "Last-Modified": "Wed, 01 Feb 2017 02:48:31 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B71A:661131A:58914C94", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4887", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\", \"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "38", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:52 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B728:6611329:58914C94", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4886", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + } + }, + { + "recorded_at": "2017-02-01T02:48:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "293", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:52 GMT", + "ETag": "\"10937104c113476af937ae618a73cae7\"", + "Last-Modified": "Wed, 01 Feb 2017 02:48:31 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B734:6611335:58914C94", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4885", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "9000e9eef7bb1e89f22030c676da140e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\", \"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "38", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:52 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B739:6611340:58914C94", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4884", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + } + }, + { + "recorded_at": "2017-02-01T02:48:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "293", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:52 GMT", + "ETag": "\"10937104c113476af937ae618a73cae7\"", + "Last-Modified": "Wed, 01 Feb 2017 02:48:31 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B747:661134C:58914C94", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4883", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\", \"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "38", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "448", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:53 GMT", + "ETag": "\"8cc9d81b0f089c54d739bca94855be9e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA8A:4118:503B757:661135B:58914C94", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4882", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "318e55760cf7cdb40e61175a4d36cd32", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_multiple.json b/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_multiple.json new file mode 100644 index 0000000..a9aa2d2 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_multiple.json @@ -0,0 +1,1931 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T22:38:28", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:28 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065D11:B7C7276:589111E4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4848", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "8dd185e423974a7e13abbbe6e060031e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T22:38:29", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:29 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065D45:B7C729D:589111E4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4847", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T22:38:29", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T22:38:23Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-01-31T22:38:24Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-01-31T22:38:25Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-01-31T22:38:25Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-01-31T22:38:26Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-01-31T22:38:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-01-31T22:38:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "14450", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:29 GMT", + "ETag": "\"06938732991742ad3bee06b97be0c520\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065D63:B7C72DF:589111E5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4846", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:29", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:29 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065DB0:B7C7303:589111E5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4845", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "8dd185e423974a7e13abbbe6e060031e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:30", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:30 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:23 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065DD6:B7C7368:589111E5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4844", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:30", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"enhancement\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "22", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "291", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:30 GMT", + "ETag": "\"b0aec16c150dcb7dbdfb7b4300471fd7\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065DFC:B7C7396:589111E6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4843", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:30", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:30 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065E33:B7C73D0:589111E6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4842", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:31", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:31 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:24 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065E49:B7C7408:589111E6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4841", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "8dd185e423974a7e13abbbe6e060031e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:31", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "7", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "138", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:31 GMT", + "ETag": "\"6d45dbb510a2d85f90c06da0b8e4b09c\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065E81:B7C742C:589111E7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4840", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a7f8a126c9ed3f1c4715a34c0ddc7290", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:31", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:31 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065EB2:B7C7482:589111E7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4839", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "3e3b9690823fb031da84658eb58aa83b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:31", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:31 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:25 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065EC9:B7C74AA:589111E7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4838", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:32", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "7", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "138", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:32 GMT", + "ETag": "\"6d45dbb510a2d85f90c06da0b8e4b09c\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065EEB:B7C74BD:589111E7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4837", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:32", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:32 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065F0A:B7C74F5:589111E8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4836", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:32", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:32 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:25 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065F1B:B7C750E:589111E8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4835", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "e724c57ebb9961c772a91e2dd7421c8d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:32", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "7", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "138", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:32 GMT", + "ETag": "\"6d45dbb510a2d85f90c06da0b8e4b09c\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065F37:B7C752C:589111E8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4834", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:33", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:33 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065F4F:B7C754F:589111E8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4833", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "474556b853193c38f1b14328ce2d1b7d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:33", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:33 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065F7F:B7C756B:589111E9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4832", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "139317cebd6caf9cd03889139437f00b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:34", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "7", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "138", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:33 GMT", + "ETag": "\"6d45dbb510a2d85f90c06da0b8e4b09c\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9065FD1:B7C75BA:589111E9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4831", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:34", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:34 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9066026:B7C761D:589111E9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4830", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:34", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:34 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:27 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9066048:B7C766F:589111EA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4829", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:34", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "7", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "138", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:34 GMT", + "ETag": "\"6d45dbb510a2d85f90c06da0b8e4b09c\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:906607A:B7C7696:589111EA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4828", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "52189b7290fad804d77890ef34a1eeae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:35 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:906609D:B7C76E0:589111EA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4827", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:35 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:27 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:90660BD:B7C7707:589111EB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4826", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "7", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "138", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:35 GMT", + "ETag": "\"6d45dbb510a2d85f90c06da0b8e4b09c\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8374:4114:9066100:B7C7736:589111EB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4825", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + } + }, + { + "recorded_at": "2017-02-01T01:26:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:38 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE3C:4114:91ADC02:B963915:5891394D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4866", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:26:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:26:37Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:26:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24510", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:38 GMT", + "ETag": "\"ac1f21ce4b816ce9b80407a058d1c20f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE3C:4114:91ADC16:B963931:5891394E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4865", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "9e60649f02cd840ee8baa9960690f79f", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:38 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE3C:4114:91ADC2C:B963947:5891394E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4864", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "593010132f82159af0ded24b4932e109", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:38 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Last-Modified": "Wed, 01 Feb 2017 01:26:37 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE3C:4114:91ADC3B:B963960:5891394E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4863", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "3e3b9690823fb031da84658eb58aa83b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"enhancement\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "22", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "291", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:38 GMT", + "ETag": "\"b0aec16c150dcb7dbdfb7b4300471fd7\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EE3C:4114:91ADC4E:B963973:5891394E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4862", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-02-01T02:48:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:43 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA48:4118:503B564:6611100:58914C8B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "13d09b732ebe76f892093130dc088652", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:43Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:30Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:44 GMT", + "ETag": "\"b9190a484f24fb9117f66e70beadb338\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA48:4118:503B57A:6611111:58914C8B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "e183f7c661b1bbc2c987b3c4dc7b04e0", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:44 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA48:4118:503B58D:6611125:58914C8C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:44 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Last-Modified": "Wed, 01 Feb 2017 02:48:43 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA48:4118:503B596:661113C:58914C8C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "e724c57ebb9961c772a91e2dd7421c8d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"enhancement\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "22", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "291", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:44 GMT", + "ETag": "\"b0aec16c150dcb7dbdfb7b4300471fd7\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA48:4118:503B5A1:6611147:58914C8C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_multiple_w_not_exists.json b/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_multiple_w_not_exists.json new file mode 100644 index 0000000..148dd34 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_multiple_w_not_exists.json @@ -0,0 +1,1931 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T22:38:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:44 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F48294:64DC181:589111F4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4800", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "8dd185e423974a7e13abbbe6e060031e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T22:38:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:44 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F482A5:64DC1A1:589111F4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4799", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "ef96c2e493b28ffea49b891b085ed2dd", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T22:38:45", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T22:38:38Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-01-31T22:38:39Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-01-31T22:38:40Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-01-31T22:38:40Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-01-31T22:38:41Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-01-31T22:38:42Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-01-31T22:38:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "15395", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:45 GMT", + "ETag": "\"f003e50c9e442f789c8888e82c346523\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F482B4:64DC1B8:589111F4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4798", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:45", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:45 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F482E2:64DC1CB:589111F5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4797", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:45", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:45 GMT", + "ETag": "\"a7e22ecc4b4c838b899602b10088d273\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:38 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F482F1:64DC202:589111F5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4796", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "593010132f82159af0ded24b4932e109", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:45", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"enhancement\", \"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:46 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F482FC:64DC215:589111F5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4795", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:46 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F4830F:64DC22E:589111F6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4794", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "13d09b732ebe76f892093130dc088652", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "283", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:46 GMT", + "ETag": "\"fe0dcaeaefb46576977b19c8d4de631f\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:39 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F48321:64DC239:589111F6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4793", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "ef96c2e493b28ffea49b891b085ed2dd", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:46 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F48332:64DC258:589111F6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4792", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:47 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F48346:64DC266:589111F6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4791", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "283", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:47 GMT", + "ETag": "\"fe0dcaeaefb46576977b19c8d4de631f\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:40 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F4835F:64DC283:589111F7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4790", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:47 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F48369:64DC2A1:589111F7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4789", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:47 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F4837D:64DC2B6:589111F7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4788", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "bae57931a6fe678a3dffe9be8e7819c8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "283", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:48 GMT", + "ETag": "\"fe0dcaeaefb46576977b19c8d4de631f\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:40 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F48388:64DC2C9:589111F7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4787", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:48 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F4839E:64DC2D9:589111F8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4786", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:48 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F483A8:64DC2F4:589111F8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4785", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "283", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:48 GMT", + "ETag": "\"fe0dcaeaefb46576977b19c8d4de631f\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:41 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F483AD:64DC2FF:589111F8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4784", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:49 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F483BF:64DC308:589111F8", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4783", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:49 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F483E3:64DC32E:589111F9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4782", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "e183f7c661b1bbc2c987b3c4dc7b04e0", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "283", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:49 GMT", + "ETag": "\"fe0dcaeaefb46576977b19c8d4de631f\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:42 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F483ED:64DC34B:589111F9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4781", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "593010132f82159af0ded24b4932e109", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:50 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F48410:64DC360:589111F9", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4780", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:50 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F4842E:64DC396:589111FA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4779", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "283", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:50 GMT", + "ETag": "\"fe0dcaeaefb46576977b19c8d4de631f\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:43 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F4843A:64DC3B4:589111FA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4778", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a51acaae89a7607fd7ee967627be18e4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:51 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83BE:4118:4F48448:64DC3C5:589111FA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4777", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + } + }, + { + "recorded_at": "2017-02-01T01:26:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:40 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8010:4114:91ADD14:B963A6A:58913950", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4856", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "4c8b2d4732c413f4b9aefe394bd65569", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:26:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:26:39Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:26:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24645", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:40 GMT", + "ETag": "\"26f4e70b1ceaeb285e69b87a5168702c\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8010:4114:91ADD27:B963A86:58913950", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4855", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "bae57931a6fe678a3dffe9be8e7819c8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:40 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8010:4114:91ADD47:B963A9F:58913950", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4854", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a7f8a126c9ed3f1c4715a34c0ddc7290", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:40 GMT", + "ETag": "\"a7e22ecc4b4c838b899602b10088d273\"", + "Last-Modified": "Wed, 01 Feb 2017 01:26:39 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8010:4114:91ADD5E:B963AC0:58913950", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4853", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "9e60649f02cd840ee8baa9960690f79f", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"enhancement\", \"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:40 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8010:4114:91ADD6F:B963AD7:58913950", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4852", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-02-01T02:48:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:46 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA66:4116:271B463:3184DEF:58914C8E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "474556b853193c38f1b14328ce2d1b7d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:46Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:30Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25046", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:47 GMT", + "ETag": "\"84184307506a10fc14c596aa856c4509\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA66:4116:271B469:3184DF5:58914C8E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:47 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA66:4116:271B471:3184DFC:58914C8F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:47 GMT", + "ETag": "\"a7e22ecc4b4c838b899602b10088d273\"", + "Last-Modified": "Wed, 01 Feb 2017 02:48:46 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA66:4116:271B473:3184E06:58914C8F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4905", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "4c8b2d4732c413f4b9aefe394bd65569", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"enhancement\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:47 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DA66:4116:271B474:3184E0A:58914C8F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_not_exists.json b/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_not_exists.json new file mode 100644 index 0000000..7f04cb0 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_not_exists.json @@ -0,0 +1,1931 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T22:38:36", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:36 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:906617C:B7C77F0:589111EC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4824", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T22:38:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:36 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:9066194:B7C7827:589111EC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4823", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T22:38:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T22:38:30Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-01-31T22:38:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-01-31T22:38:32Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-01-31T22:38:32Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-01-31T22:38:33Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-01-31T22:38:34Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-01-31T22:38:35Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "14380", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:37 GMT", + "ETag": "\"cfd7c113f8f8da829c4bcb03f73f5cfa\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:90661D3:B7C7849:589111EC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4822", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "474556b853193c38f1b14328ce2d1b7d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:37 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:9066230:B7C78A7:589111ED", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4821", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "291", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:38 GMT", + "ETag": "\"b0aec16c150dcb7dbdfb7b4300471fd7\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:30 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:9066246:B7C790D:589111ED", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4820", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "474556b853193c38f1b14328ce2d1b7d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"enhancement\", \"invalid\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "33", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:38 GMT", + "ETag": "\"a7e22ecc4b4c838b899602b10088d273\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:906625D:B7C7927:589111EE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4819", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:38 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:906629A:B7C7947:589111EE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4818", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "138", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:38 GMT", + "ETag": "\"6d45dbb510a2d85f90c06da0b8e4b09c\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:31 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:90662BF:B7C7986:589111EE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4817", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "18", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "283", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:39 GMT", + "ETag": "\"fe0dcaeaefb46576977b19c8d4de631f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:90662ED:B7C79BF:589111EE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4816", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:39 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:9066312:B7C79F4:589111EF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4815", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "318e55760cf7cdb40e61175a4d36cd32", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "138", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:39 GMT", + "ETag": "\"6d45dbb510a2d85f90c06da0b8e4b09c\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:32 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:9066345:B7C7A21:589111EF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4814", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "18", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "283", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:40 GMT", + "ETag": "\"fe0dcaeaefb46576977b19c8d4de631f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:906638F:B7C7A62:589111EF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4813", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:40 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:90663B4:B7C7AC6:589111F0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4812", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "138", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:40 GMT", + "ETag": "\"6d45dbb510a2d85f90c06da0b8e4b09c\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:32 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:90663E7:B7C7AE2:589111F0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4811", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "18", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "283", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:40 GMT", + "ETag": "\"fe0dcaeaefb46576977b19c8d4de631f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:9066402:B7C7B20:589111F0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4810", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:41 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:9066425:B7C7B44:589111F0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4809", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "138", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:41 GMT", + "ETag": "\"6d45dbb510a2d85f90c06da0b8e4b09c\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:33 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:906645A:B7C7B66:589111F1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4808", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "18", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "283", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:41 GMT", + "ETag": "\"fe0dcaeaefb46576977b19c8d4de631f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:9066472:B7C7BA3:589111F1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4807", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "139317cebd6caf9cd03889139437f00b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:41 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:9066499:B7C7BC6:589111F1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4806", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a51acaae89a7607fd7ee967627be18e4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "138", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:42 GMT", + "ETag": "\"6d45dbb510a2d85f90c06da0b8e4b09c\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:34 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:90664BB:B7C7BFC:589111F1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4805", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "18", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "283", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:42 GMT", + "ETag": "\"fe0dcaeaefb46576977b19c8d4de631f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:90664F6:B7C7C2C:589111F2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4804", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "c6c65e5196703428e7641f7d1e9bc353", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:42 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:9066533:B7C7C83:589111F2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4803", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "593010132f82159af0ded24b4932e109", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "138", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:43 GMT", + "ETag": "\"6d45dbb510a2d85f90c06da0b8e4b09c\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:35 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:9066558:B7C7CCE:589111F2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4802", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "18", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "283", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:43 GMT", + "ETag": "\"fe0dcaeaefb46576977b19c8d4de631f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CDD6:4114:906658D:B7C7CF2:589111F3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4801", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "e183f7c661b1bbc2c987b3c4dc7b04e0", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + } + }, + { + "recorded_at": "2017-02-01T01:26:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:39 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A416:411B:895C54D:AEB47AC:5891394E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4861", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:26:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:26:38Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:26:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24500", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:39 GMT", + "ETag": "\"96739203e8daf2b9e9a3c80f3a825e70\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A416:411B:895C560:AEB47BE:5891394F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4860", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:39 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A416:411B:895C578:AEB47D4:5891394F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4859", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "291", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:39 GMT", + "ETag": "\"b0aec16c150dcb7dbdfb7b4300471fd7\"", + "Last-Modified": "Wed, 01 Feb 2017 01:26:38 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A416:411B:895C58B:AEB47EE:5891394F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4858", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"invalid\", \"enhancement\", \"bug\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "33", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:39 GMT", + "ETag": "\"a7e22ecc4b4c838b899602b10088d273\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A416:411B:895C5A2:AEB4809:5891394F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4857", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-02-01T02:48:45", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:45 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B646:4114:9241787:BA1DA78:58914C8D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:45", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:44Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:30Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24901", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:45 GMT", + "ETag": "\"21fa552ff18f34869f79c630e9a51adf\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B646:4114:92417AA:BA1DA8B:58914C8D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:45", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:45 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B646:4114:92417D3:BA1DABF:58914C8D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "2c18a09f3ac5e4dd1e004af7c5a94769", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "291", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:46 GMT", + "ETag": "\"b0aec16c150dcb7dbdfb7b4300471fd7\"", + "Last-Modified": "Wed, 01 Feb 2017 02:48:44 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B646:4114:92417EB:BA1DAF2:58914C8D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"enhancement\", \"bug\", \"invalid\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "33", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:46 GMT", + "ETag": "\"a7e22ecc4b4c838b899602b10088d273\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B646:4114:92417FB:BA1DB09:58914C8E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_single.json b/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_single.json new file mode 100644 index 0000000..a16b42c --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_single.json @@ -0,0 +1,1931 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T22:38:22", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:22 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:906592F:B7C6D53:589111DD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4872", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2c18a09f3ac5e4dd1e004af7c5a94769", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T22:38:22", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:22 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065948:B7C6DAB:589111DE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4871", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T22:38:23", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T22:38:18Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-01-31T22:38:18Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-01-31T22:38:19Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-01-31T22:38:19Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-01-31T22:38:20Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-01-31T22:38:20Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-01-31T22:38:21Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "13427", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:23 GMT", + "ETag": "\"91b3aa4cdff56904d7e95a2acd4ce9b3\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:906596D:B7C6DD0:589111DE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4870", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:23", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:23 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:90659B8:B7C6E01:589111DF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4869", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:23", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "154", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:23 GMT", + "ETag": "\"9fbc38679d158820cc75bf4cba3fb924\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:18 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:90659DE:B7C6E60:589111DF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4868", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:23", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"enhancement\", \"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:23 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065A10:B7C6E8B:589111DF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4867", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2d7a5e35115884240089368322196939", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:24", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:24 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065A38:B7C6ED0:589111DF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4866", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "474556b853193c38f1b14328ce2d1b7d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:24", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:24 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:18 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065A5D:B7C6EFD:589111E0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4865", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:24", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:24 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065A7B:B7C6F25:589111E0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4864", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:24", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:24 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065A9B:B7C6F4D:589111E0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4863", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:24 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:19 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065AB9:B7C6F71:589111E0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4862", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:25 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065AF3:B7C6F9F:589111E0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4861", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:25 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065B10:B7C6FEC:589111E1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4860", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:25 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:19 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065B2E:B7C700C:589111E1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4859", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:25 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065B51:B7C702F:589111E1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4858", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:26", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:26 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065B86:B7C706D:589111E1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4857", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:26", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:26 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:20 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065BA2:B7C709C:589111E2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4856", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:26", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:26 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065BB9:B7C70C3:589111E2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4855", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:26", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:26 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065BD4:B7C70EA:589111E2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4854", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:26", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:27 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:20 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065C00:B7C7112:589111E2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4853", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2d7a5e35115884240089368322196939", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:27", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:27 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065C19:B7C714C:589111E3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4852", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:27", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:27 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065C42:B7C7174:589111E3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4851", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:27", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:27 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:21 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065C68:B7C719F:589111E3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4850", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:27", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "12", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:27 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CD80:4114:9065C88:B7C71D0:589111E3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4849", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + } + }, + { + "recorded_at": "2017-02-01T01:26:36", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:36 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3F6:411B:895C3DA:AEB45F0:5891394C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4871", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "bae57931a6fe678a3dffe9be8e7819c8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:26:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:26:36Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:26:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24363", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:36 GMT", + "ETag": "\"f7d104f492e1a082d24185957739991a\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3F6:411B:895C3EA:AEB45FF:5891394C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4870", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:37 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3F6:411B:895C40B:AEB4615:5891394C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4869", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "154", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:37 GMT", + "ETag": "\"9fbc38679d158820cc75bf4cba3fb924\"", + "Last-Modified": "Wed, 01 Feb 2017 01:26:36 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3F6:411B:895C41C:AEB463E:5891394D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4868", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"enhancement\", \"question\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:37 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A3F6:411B:895C42E:AEB4652:5891394D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4867", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-02-01T02:48:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:42 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B622:411B:89E5072:AF60B45:58914C89", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "2d7a5e35115884240089368322196939", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:41Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:30Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24764", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:42 GMT", + "ETag": "\"9118512d95039dd53a5d996d09f1c06f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B622:411B:89E509C:AF60B57:58914C8A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "8dd185e423974a7e13abbbe6e060031e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:42 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B622:411B:89E50C6:AF60B8E:58914C8A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "154", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:42 GMT", + "ETag": "\"9fbc38679d158820cc75bf4cba3fb924\"", + "Last-Modified": "Wed, 01 Feb 2017 02:48:41 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B622:411B:89E50D7:AF60BC6:58914C8A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"enhancement\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:43 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B622:411B:89E50F3:AF60BD7:58914C8A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "13d09b732ebe76f892093130dc088652", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_with_spaces.json b/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_with_spaces.json new file mode 100644 index 0000000..4470c0c --- /dev/null +++ b/tests/integration/cassettes/test_github_test_40_3_issue_toggle__label_with_spaces.json @@ -0,0 +1,1931 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-01-31T22:38:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:52 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066AAA:B7C832D:589111FB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4776", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-01-31T22:38:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:52 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066AC1:B7C835A:589111FC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4775", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a7f8a126c9ed3f1c4715a34c0ddc7290", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-01-31T22:38:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-01-31T22:38:46Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-01-31T22:38:46Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-01-31T22:38:47Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-01-31T22:38:48Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-01-31T22:38:49Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-01-31T22:38:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-01-31T22:38:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "14450", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:52 GMT", + "ETag": "\"9c3fe969179f87b82db0d0922b319c24\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066AF5:B7C8374:589111FC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4774", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:53 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066B3D:B7C83BB:589111FC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4773", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "318e55760cf7cdb40e61175a4d36cd32", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:53 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:46 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066B61:B7C840C:589111FD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4772", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"enhancement\", \"question\", \"help wanted\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "42", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "456", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:53 GMT", + "ETag": "\"bb81a242280b09d9fa338448503edb59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066B92:B7C8430:589111FD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4771", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:54 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066BB5:B7C8468:589111FD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4770", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:54 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:46 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066BEB:B7C848A:589111FE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4769", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "139317cebd6caf9cd03889139437f00b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "303", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:54 GMT", + "ETag": "\"792e304a33ffc54a0293679db49e12db\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066C09:B7C84DA:589111FE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4768", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:54 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066C29:B7C84FE:589111FE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4767", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2d7a5e35115884240089368322196939", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:55 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:47 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066C61:B7C8519:589111FE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4766", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "76d9828c7e4f1d910f7ba069e90ce976", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "303", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:55 GMT", + "ETag": "\"792e304a33ffc54a0293679db49e12db\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066C85:B7C856F:589111FF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4765", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:55 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066CA5:B7C8596:589111FF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4764", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:55 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:48 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066CC9:B7C85C0:589111FF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4763", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "46808ddc41c302090177e58148908b23", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "303", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:56 GMT", + "ETag": "\"792e304a33ffc54a0293679db49e12db\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066D09:B7C85E5:589111FF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4762", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:56 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066D29:B7C863C:58911200", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4761", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:56 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:49 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066D52:B7C8657:58911200", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4760", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "a474937f3b2fa272558fa6dc951018ad", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "303", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:57 GMT", + "ETag": "\"792e304a33ffc54a0293679db49e12db\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066D84:B7C868C:58911200", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4759", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:57 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066DBE:B7C86BC:58911201", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4758", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:57 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:50 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066DEA:B7C8704:58911201", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4757", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "ef96c2e493b28ffea49b891b085ed2dd", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "303", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:58 GMT", + "ETag": "\"792e304a33ffc54a0293679db49e12db\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066E2D:B7C872F:58911201", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4756", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2/labels" + } + }, + { + "recorded_at": "2017-01-31T22:38:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:58 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066E4C:B7C8784:58911202", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4755", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "2d7a5e35115884240089368322196939", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "148", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:58 GMT", + "ETag": "\"2932b279f71735fc1a983c5281d7b589\"", + "Last-Modified": "Tue, 31 Jan 2017 22:38:51 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066E80:B7C87AE:58911202", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4754", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels?per_page=100" + } + }, + { + "recorded_at": "2017-01-31T22:38:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "27", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "303", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 31 Jan 2017 22:38:58 GMT", + "ETag": "\"792e304a33ffc54a0293679db49e12db\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "CE22:4114:9066EA8:B7C87F9:58911202", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4753", + "X-RateLimit-Reset": "1485902575", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1/labels" + } + }, + { + "recorded_at": "2017-02-01T01:26:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:41 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A42E:411B:895C67D:AEB4917:58913951", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4851", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:26:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:26:40Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:26:27Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:26:28Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24510", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:41 GMT", + "ETag": "\"8bedb19d59a0f3ead8bfe2d29342d4da\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A42E:411B:895C697:AEB4936:58913951", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4850", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "139317cebd6caf9cd03889139437f00b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:41 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A42E:411B:895C6C2:AEB4954:58913951", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4849", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "9000e9eef7bb1e89f22030c676da140e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:42 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Last-Modified": "Wed, 01 Feb 2017 01:26:40 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A42E:411B:895C6D8:AEB4982:58913951", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4848", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:26:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"enhancement\", \"help wanted\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "42", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "456", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:26:42 GMT", + "ETag": "\"bb81a242280b09d9fa338448503edb59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A42E:411B:895C6ED:AEB499E:58913952", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4847", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "7b641bda7ec2ca7cd9df72d2578baf75", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + }, + { + "recorded_at": "2017-02-01T02:48:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:48 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B668:4114:9241907:BA1DC51:58914C90", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:47Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:30Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:31Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:48 GMT", + "ETag": "\"043552868b2fbb5fcd3745eb0b7d23a4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B668:4114:924191B:BA1DC74:58914C90", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "e183f7c661b1bbc2c987b3c4dc7b04e0", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228923,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/duplicate\",\"name\":\"duplicate\",\"color\":\"cccccc\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true},{\"id\":523228928,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/wontfix\",\"name\":\"wontfix\",\"color\":\"ffffff\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1032", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:49 GMT", + "ETag": "\"f28e9c7fc0083d4c220c098d1e3f9cef\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B668:4114:924194E:BA1DC8E:58914C90", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "301", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:49 GMT", + "ETag": "\"de0ceb4415d5d37de786225c1e44df59\"", + "Last-Modified": "Wed, 01 Feb 2017 02:48:47 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B668:4114:924195F:BA1DCCC:58914C91", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "[\"question\", \"help wanted\", \"enhancement\"]" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "42", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PUT", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "456", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:49 GMT", + "ETag": "\"bb81a242280b09d9fa338448503edb59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B668:4114:9241969:BA1DCE1:58914C91", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/labels" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_41_1_issue_set__milestone_not_exists.json b/tests/integration/cassettes/test_github_test_41_1_issue_set__milestone_not_exists.json new file mode 100644 index 0000000..bd3b664 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_41_1_issue_set__milestone_not_exists.json @@ -0,0 +1,569 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:42:28", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:28 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B15E:4114:915A984:B8FB4CD:58912EF4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4669", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "c6c65e5196703428e7641f7d1e9bc353", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:42:28", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:28 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B15E:4114:915A9A0:B8FB4E6:58912EF4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4668", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "318e55760cf7cdb40e61175a4d36cd32", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:42:29", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:28 GMT", + "ETag": "\"54ae63b6c5c01e154f67bdce4a6a731b\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B15E:4114:915A9B7:B8FB50B:58912EF4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4667", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a51acaae89a7607fd7ee967627be18e4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:42:29", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:29 GMT", + "ETag": "\"fa87b930cdb28654af4ad8227b19c8a6\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B15E:4114:915A9D9:B8FB524:58912EF4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4666", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:29:24", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:24 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A640:4114:91B2DD2:B969FA3:589139F4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4815", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:29:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:24 GMT", + "ETag": "\"bdfd7a32764f3b051ac46c042854b955\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A640:4114:91B2DE7:B969FC4:589139F4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4814", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:29:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:25 GMT", + "ETag": "\"cb724fbcc5a5c9a4c0440adbbbe46a5e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A640:4114:91B2E12:B969FDD:589139F4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4813", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "593010132f82159af0ded24b4932e109", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:57 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B6D2:4114:9241DD7:BA1E252:58914C99", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4868", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:58 GMT", + "ETag": "\"16a6ee3e23239c0653ed1b54ea45c027\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B6D2:4114:9241DEE:BA1E267:58914C99", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4867", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:58", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:58 GMT", + "ETag": "\"37322040b83b3b19a7d092ab25e8317d\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B6D2:4114:9241E23:BA1E288:58914C9A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4866", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_41_1_issue_unset__milestone_not_exists.json b/tests/integration/cassettes/test_github_test_41_1_issue_unset__milestone_not_exists.json new file mode 100644 index 0000000..cd21136 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_41_1_issue_unset__milestone_not_exists.json @@ -0,0 +1,569 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:42:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:37 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D5D8:411B:891463A:AE59143:58912EFC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4665", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:42:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:37 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D5D8:411B:891464D:AE59150:58912EFD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4664", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:42:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:37 GMT", + "ETag": "\"54ae63b6c5c01e154f67bdce4a6a731b\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D5D8:411B:891465E:AE59167:58912EFD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4663", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "e724c57ebb9961c772a91e2dd7421c8d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:42:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:37 GMT", + "ETag": "\"fa87b930cdb28654af4ad8227b19c8a6\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D5D8:411B:891466E:AE5917A:58912EFD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4662", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "2d7a5e35115884240089368322196939", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:29:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:25 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8238:4114:91B2E51:B96A042:589139F5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4812", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "e183f7c661b1bbc2c987b3c4dc7b04e0", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:29:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:25 GMT", + "ETag": "\"bdfd7a32764f3b051ac46c042854b955\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8238:4114:91B2E64:B96A05B:589139F5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4811", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "9000e9eef7bb1e89f22030c676da140e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:29:25", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:25 GMT", + "ETag": "\"cb724fbcc5a5c9a4c0440adbbbe46a5e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8238:4114:91B2E87:B96A076:589139F5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4810", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "173530fed4bbeb1e264b2ed22e8b5c20", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:59", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:58 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DAF4:411B:89E565B:AF612D4:58914C9A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4865", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "a7f8a126c9ed3f1c4715a34c0ddc7290", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:59", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:59 GMT", + "ETag": "\"16a6ee3e23239c0653ed1b54ea45c027\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DAF4:411B:89E5673:AF612EB:58914C9A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4864", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "139317cebd6caf9cd03889139437f00b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:59", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:59 GMT", + "ETag": "\"37322040b83b3b19a7d092ab25e8317d\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DAF4:411B:89E5696:AF61309:58914C9B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4863", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_41_3_issue_toggle__milestone_not_exists.json b/tests/integration/cassettes/test_github_test_41_3_issue_toggle__milestone_not_exists.json new file mode 100644 index 0000000..14c3621 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_41_3_issue_toggle__milestone_not_exists.json @@ -0,0 +1,569 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:42:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:38 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B1D6:411B:8914698:AE591BC:58912EFD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4661", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:42:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:38 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B1D6:411B:89146A9:AE591D6:58912EFE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4660", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:42:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:38 GMT", + "ETag": "\"54ae63b6c5c01e154f67bdce4a6a731b\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B1D6:411B:89146B8:AE591EB:58912EFE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4659", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:42:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:38 GMT", + "ETag": "\"fa87b930cdb28654af4ad8227b19c8a6\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B1D6:411B:89146CB:AE591FA:58912EFE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4658", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:29:26", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:26 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A656:4114:91B2ED5:B96A0D9:589139F6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4809", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:29:26", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:26 GMT", + "ETag": "\"bdfd7a32764f3b051ac46c042854b955\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A656:4114:91B2EE8:B96A0EF:589139F6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4808", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "2d7a5e35115884240089368322196939", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:29:26", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:26 GMT", + "ETag": "\"cb724fbcc5a5c9a4c0440adbbbe46a5e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A656:4114:91B2F13:B96A115:589139F6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4807", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:49:00", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:59 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B6F4:411B:89E56CC:AF6136A:58914C9B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4862", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "46808ddc41c302090177e58148908b23", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:49:00", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:00 GMT", + "ETag": "\"16a6ee3e23239c0653ed1b54ea45c027\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B6F4:411B:89E56FE:AF61379:58914C9B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4861", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:49:00", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:00 GMT", + "ETag": "\"37322040b83b3b19a7d092ab25e8317d\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B6F4:411B:89E572B:AF613CF:58914C9C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4860", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "46808ddc41c302090177e58148908b23", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_41_issue_get__milestone.json b/tests/integration/cassettes/test_github_test_41_issue_get__milestone.json new file mode 100644 index 0000000..669f796 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_41_issue_get__milestone.json @@ -0,0 +1,401 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:41:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:46 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D3C2:411B:8912E4A:AE5734B:58912ECA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4681", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "52189b7290fad804d77890ef34a1eeae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:41:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:47 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D3C2:411B:8912E60:AE5735B:58912ECA", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4680", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:41:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:47 GMT", + "ETag": "\"86016e819411cc7952153eea20311846\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D3C2:411B:8912E6C:AE57375:58912ECB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4679", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:29:17", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:17 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A606:4114:91B2A60:B969B4E:589139ED", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4828", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:29:18", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23580", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:17 GMT", + "ETag": "\"731b91f950064559dcae834ec4e104a3\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A606:4114:91B2A78:B969B64:589139ED", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4827", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:53 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B68E:411B:89E5484:AF61079:58914C95", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4881", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:53 GMT", + "ETag": "\"2a4720a80e31e39b45ae699888fae51a\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B68E:411B:89E5491:AF6108A:58914C95", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4880", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "76d9828c7e4f1d910f7ba069e90ce976", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_41_issue_set__milestone.json b/tests/integration/cassettes/test_github_test_41_issue_set__milestone.json new file mode 100644 index 0000000..b22e670 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_41_issue_set__milestone.json @@ -0,0 +1,740 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:41:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:47 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "AFC8:4114:9159584:B8F9B72:58912ECB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4678", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "7b641bda7ec2ca7cd9df72d2578baf75", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:41:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:48 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "AFC8:4114:9159598:B8F9B89:58912ECB", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4677", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:41:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:48 GMT", + "ETag": "\"86016e819411cc7952153eea20311846\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "AFC8:4114:91595AC:B8F9BA1:58912ECC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4676", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:41:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:48 GMT", + "ETag": "\"9c63286f172a03d5692263976c51d14d\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "AFC8:4114:91595C6:B8F9BBC:58912ECC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4675", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:41:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"milestone\": 1}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "16", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:48Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:41:48Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4361", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:48 GMT", + "ETag": "\"81555e4295d286559baf73fced8ceecf\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "AFC8:4114:91595CF:B8F9BD4:58912ECC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4674", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T01:29:21", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:21 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8206:411B:89607A0:AEB9B70:589139F1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4826", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:29:21", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23580", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:21 GMT", + "ETag": "\"731b91f950064559dcae834ec4e104a3\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8206:411B:89607B0:AEB9B7F:589139F1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4825", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:29:22", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:22 GMT", + "ETag": "\"8b517266a3c3e07e1e26047385c87c59\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8206:411B:89607D6:AEB9B9C:589139F1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4824", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a474937f3b2fa272558fa6dc951018ad", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:29:22", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"milestone\": 1}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "16", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:29:22Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4206", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:22 GMT", + "ETag": "\"afbcb810cef6f637c09a5410c31c746c\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8206:411B:89607DD:AEB9BC2:589139F2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4823", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T02:48:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:54 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DAAA:4118:503B7A0:66113C5:58914C96", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4879", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:54 GMT", + "ETag": "\"2a4720a80e31e39b45ae699888fae51a\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DAAA:4118:503B7AD:66113CE:58914C96", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4878", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:54 GMT", + "ETag": "\"b886c58b8d35cebbea63a90c891f9cea\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DAAA:4118:503B7BC:66113E2:58914C96", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4877", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"milestone\": 1}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "16", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4206", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:55 GMT", + "ETag": "\"358459ab96f8e84319f27dfb3d73983a\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DAAA:4118:503B7C1:66113F3:58914C96", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4876", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "4c8b2d4732c413f4b9aefe394bd65569", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_41_issue_toggle__milestone.json b/tests/integration/cassettes/test_github_test_41_issue_toggle__milestone.json new file mode 100644 index 0000000..ccd0ac2 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_41_issue_toggle__milestone.json @@ -0,0 +1,740 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:41:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:40 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "AF62:411B:8912B83:AE56FAF:58912EC4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4686", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:41:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:40 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "AF62:411B:8912B90:AE56FBC:58912EC4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4685", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a51acaae89a7607fd7ee967627be18e4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:41:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:39:42Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24852", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:40 GMT", + "ETag": "\"aa253699c03aee765f8ae9b53f16eb94\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "AF62:411B:8912BA4:AE56FD7:58912EC4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4684", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:41:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:41 GMT", + "ETag": "\"532aa93388a0f54e5c017620570c79ea\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "AF62:411B:8912BBC:AE56FEC:58912EC4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4683", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:41:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"milestone\": null}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "19", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:41:41Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3030", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:41 GMT", + "ETag": "\"048fd9d30123f4ed48bf2a64dce24c11\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "AF62:411B:8912BCB:AE57003:58912EC5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4682", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a51acaae89a7607fd7ee967627be18e4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T01:29:23", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:23 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8222:411B:8960873:AEB9C86:589139F3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4819", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:29:23", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:29:23Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23580", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:23 GMT", + "ETag": "\"9acc5301a5deab9a6ecb71046e654d0a\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8222:411B:896087F:AEB9C90:589139F3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4818", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a474937f3b2fa272558fa6dc951018ad", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:29:24", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:24 GMT", + "ETag": "\"a689428783332b6e11cf30e4d4799d03\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8222:411B:8960894:AEB9C9E:589139F3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4817", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:29:24", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"milestone\": 1}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "16", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4206", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:24 GMT", + "ETag": "\"20b948d8b9ce49f23c3dc81402eea1c6\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8222:411B:896089E:AEB9CB6:589139F4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4816", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "e724c57ebb9961c772a91e2dd7421c8d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T02:48:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:56 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DAD4:4118:503B804:661144A:58914C98", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4872", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:56Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:56Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:56Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:56Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:56Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:56Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:56Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24510", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:57 GMT", + "ETag": "\"381920ca067a82964e00eb8d0aa8ca3c\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DAD4:4118:503B80E:6611450:58914C98", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4871", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "8dd185e423974a7e13abbbe6e060031e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:56Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1337", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:57 GMT", + "ETag": "\"7cc5a8d63635ec52273da2d126890af7\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DAD4:4118:503B819:661145F:58914C99", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4870", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/milestones?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"milestone\": 1}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "16", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4206", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:57 GMT", + "ETag": "\"037b2e7dc2495ffbbb794a19b1626d55\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DAD4:4118:503B81E:661146F:58914C99", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4869", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "52189b7290fad804d77890ef34a1eeae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_41_issue_unset__milestone.json b/tests/integration/cassettes/test_github_test_41_issue_unset__milestone.json new file mode 100644 index 0000000..9f5ea54 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_41_issue_unset__milestone.json @@ -0,0 +1,572 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:41:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:49 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D3FC:411B:8912F03:AE57446:58912ECC", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4673", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:41:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:49 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D3FC:411B:8912F0E:AE57453:58912ECD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4672", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "9000e9eef7bb1e89f22030c676da140e", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:41:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:48Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:41:48Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:48Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:48Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:48Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:48Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:48Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:48Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24852", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:49 GMT", + "ETag": "\"5fe843aeba54365445448346e5760ec9\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D3FC:411B:8912F1F:AE5746A:58912ECD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4671", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:41:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"milestone\": null}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "19", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3030", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:41:49 GMT", + "ETag": "\"06a486a370b3b061654f613e36f4c7c7\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D3FC:411B:8912F42:AE5747C:58912ECD", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4670", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T01:29:22", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:22 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A62C:4114:91B2CE0:B969E85:589139F2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4822", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:29:22", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:29:22Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:22 GMT", + "ETag": "\"b94adc22758c629f731fbc58a1d3490d\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A62C:4114:91B2CEC:B969E97:589139F2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4821", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:29:23", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"milestone\": null}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "19", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:29:23Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2875", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:29:23 GMT", + "ETag": "\"5b3029521c7f24ffe60ba89e51f1d458\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A62C:4114:91B2D0D:B969EB1:589139F2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4820", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T02:48:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:55 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B6B2:4118:503B7DC:6611417:58914C97", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4875", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:48:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:55 GMT", + "ETag": "\"2a4720a80e31e39b45ae699888fae51a\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B6B2:4118:503B7DF:661141E:58914C97", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4874", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:48:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"milestone\": null}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "19", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:56Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2875", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:48:56 GMT", + "ETag": "\"223b35dd70263d5cf26c90fcd86e07fd\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B6B2:4118:503B7EE:6611424:58914C97", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4873", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_42_0_issue_get__open.json b/tests/integration/cassettes/test_github_test_42_0_issue_get__open.json new file mode 100644 index 0000000..e066eac --- /dev/null +++ b/tests/integration/cassettes/test_github_test_42_0_issue_get__open.json @@ -0,0 +1,401 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:42:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:38 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D5FA:411B:8914703:AE5924D:58912EFE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4657", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:42:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:39 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D5FA:411B:8914715:AE59265:58912EFE", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4656", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:42:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:39 GMT", + "ETag": "\"54ae63b6c5c01e154f67bdce4a6a731b\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D5FA:411B:8914726:AE59280:58912EFF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4655", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "474556b853193c38f1b14328ce2d1b7d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:30:14", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:14 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8306:4114:91B48D2:B96C0C5:58913A26", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4806", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "474556b853193c38f1b14328ce2d1b7d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:30:14", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:14 GMT", + "ETag": "\"bdfd7a32764f3b051ac46c042854b955\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8306:4114:91B48E5:B96C0E0:58913A26", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4805", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:49:01", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:01 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DB10:4114:9241FCE:BA1E48F:58914C9C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4859", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:49:01", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:01 GMT", + "ETag": "\"16a6ee3e23239c0653ed1b54ea45c027\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DB10:4114:9241FF1:BA1E4CE:58914C9D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4858", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "76d9828c7e4f1d910f7ba069e90ce976", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_42_1_issue_set__open.json b/tests/integration/cassettes/test_github_test_42_1_issue_set__open.json new file mode 100644 index 0000000..9bcedcd --- /dev/null +++ b/tests/integration/cassettes/test_github_test_42_1_issue_set__open.json @@ -0,0 +1,914 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:42:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:39 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B204:411B:8914776:AE592E1:58912EFF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4654", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "2d7a5e35115884240089368322196939", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:42:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:39 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B204:411B:8914787:AE592F9:58912EFF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4653", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a7f8a126c9ed3f1c4715a34c0ddc7290", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:42:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:39:43Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:39:44Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:39:45Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:40 GMT", + "ETag": "\"54ae63b6c5c01e154f67bdce4a6a731b\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B204:411B:891479C:AE5930F:58912EFF", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4652", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "318e55760cf7cdb40e61175a4d36cd32", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:42:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"open\", \"labels\": [\"enhancement\", \"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "154", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:42:40Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3030", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:40 GMT", + "ETag": "\"52039ed5c49463651310a7713e48446b\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B204:411B:89147B2:AE59320:58912F00", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4651", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "2d7a5e35115884240089368322196939", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T00:42:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #6\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:42:40Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":null}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3574", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:40 GMT", + "ETag": "\"f4212058107cc8438ef88193f44b50d5\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B204:411B:89147C5:AE59343:58912F00", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4650", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6" + } + }, + { + "recorded_at": "2017-02-01T00:42:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #5\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:42:40Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":null}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3574", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:40 GMT", + "ETag": "\"c98a91fb27740f483be945c2a848427d\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B204:411B:89147D9:AE5935E:58912F00", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4649", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "ef96c2e493b28ffea49b891b085ed2dd", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5" + } + }, + { + "recorded_at": "2017-02-01T00:42:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #4\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:42:40Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":null}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3574", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:41 GMT", + "ETag": "\"c51b829414e977725059bca51e069234\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B204:411B:89147F2:AE59379:58912F00", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4648", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4" + } + }, + { + "recorded_at": "2017-02-01T00:42:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #3\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:42:41Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":null}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3574", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:41 GMT", + "ETag": "\"3950f92673854ba19fb6738f6b9b5bd5\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B204:411B:8914807:AE59394:58912F01", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4647", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "474556b853193c38f1b14328ce2d1b7d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3" + } + }, + { + "recorded_at": "2017-02-01T00:42:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #2\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:42:41Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":null}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3574", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:41 GMT", + "ETag": "\"3a27562d7a649632c2f8871d31c095f4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B204:411B:8914813:AE593A7:58912F01", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4646", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2" + } + }, + { + "recorded_at": "2017-02-01T00:42:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #1\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:42:41Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":null}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3574", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:42:41 GMT", + "ETag": "\"aac1cad84f488ef123d849f4595a34ae\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B204:411B:891482A:AE593C3:58912F01", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4645", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1" + } + }, + { + "recorded_at": "2017-02-01T01:30:21", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:21 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A732:411B:8961E88:AEBB856:58913A2C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4804", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:30:21", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:21 GMT", + "ETag": "\"bdfd7a32764f3b051ac46c042854b955\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A732:411B:8961E9C:AEBB86B:58913A2D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4803", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:30:21", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"enhancement\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "155", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:21Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4206", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:21 GMT", + "ETag": "\"e201d79cae01d973400df1395b3ab63f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A732:411B:8961EB3:AEBB882:58913A2D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4802", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T02:49:02", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:02 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B706:411B:89E5800:AF614F8:58914C9D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4857", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:49:02", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:02 GMT", + "ETag": "\"16a6ee3e23239c0653ed1b54ea45c027\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B706:411B:89E581D:AF6150A:58914C9E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4856", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:49:03", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"enhancement\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "155", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:02Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4206", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:02 GMT", + "ETag": "\"4b32aeab0096a67364a6ce5ffb50e72b\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B706:411B:89E584C:AF61536:58914C9E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4855", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_42_2_issue_unset__open.json b/tests/integration/cassettes/test_github_test_42_2_issue_unset__open.json new file mode 100644 index 0000000..d922b70 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_42_2_issue_unset__open.json @@ -0,0 +1,914 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:43:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:43:54 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B384:4114:915D5BF:B8FEB35:58912F4A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4641", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "593010132f82159af0ded24b4932e109", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:43:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:43:55 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B384:4114:915D5D4:B8FEB46:58912F4A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4640", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:43:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:42:40Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:42:40Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:42:40Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:42:40Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:42:41Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:42:41Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:41:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:42:41Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:43:55 GMT", + "ETag": "\"914a4adb84e2746fa06949c2441b99da\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B384:4114:915D5E9:B8FEB61:58912F4B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4639", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "318e55760cf7cdb40e61175a4d36cd32", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:43:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"closed\", \"labels\": [\"enhancement\", \"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "156", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:43:55Z\",\"closed_at\":\"2017-02-01T00:43:55Z\",\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3050", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:43:55 GMT", + "ETag": "\"f9be58be477ea5d24d6f10ff292a9e94\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B384:4114:915D608:B8FEB7D:58912F4B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4638", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T00:43:55", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #6\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "113", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":5,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:43:55Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:43:55Z\",\"closed_at\":\"2017-02-01T00:43:55Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:43:55 GMT", + "ETag": "\"5ffc65e01af267bfb446582cefed9dcd\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B384:4114:915D621:B8FEBAE:58912F4B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4637", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6" + } + }, + { + "recorded_at": "2017-02-01T00:43:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #5\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "113", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":4,\"closed_issues\":2,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:43:56Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:43:56Z\",\"closed_at\":\"2017-02-01T00:43:55Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:43:56 GMT", + "ETag": "\"34d7dd6ed6e229b110278010ec84a344\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B384:4114:915D647:B8FEBD9:58912F4B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4636", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5" + } + }, + { + "recorded_at": "2017-02-01T00:43:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #4\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "113", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":3,\"closed_issues\":3,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:43:56Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:43:56Z\",\"closed_at\":\"2017-02-01T00:43:56Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:43:56 GMT", + "ETag": "\"4a79825bd74f45deba4177ce94e4537b\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B384:4114:915D66A:B8FEC07:58912F4C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4635", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "065b43cd9674091fec48a221b420fbb3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4" + } + }, + { + "recorded_at": "2017-02-01T00:43:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #3\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "113", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":2,\"closed_issues\":4,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:43:56Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:43:56Z\",\"closed_at\":\"2017-02-01T00:43:56Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:43:56 GMT", + "ETag": "\"d3e997c39299f324dc4dddd63958b912\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B384:4114:915D691:B8FEC30:58912F4C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4634", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "46808ddc41c302090177e58148908b23", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3" + } + }, + { + "recorded_at": "2017-02-01T00:43:56", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #2\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "113", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":1,\"closed_issues\":5,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:43:56Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:43:56Z\",\"closed_at\":\"2017-02-01T00:43:56Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:43:56 GMT", + "ETag": "\"0dee25af1b987bae732f373e5cdd461f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B384:4114:915D6BB:B8FEC68:58912F4C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4633", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2" + } + }, + { + "recorded_at": "2017-02-01T00:43:57", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #1\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "113", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:43:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:43:57Z\",\"closed_at\":\"2017-02-01T00:43:57Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:43:57 GMT", + "ETag": "\"fa154478ec07447f0b44101a84670fda\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B384:4114:915D6E2:B8FEC9D:58912F4C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4632", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1" + } + }, + { + "recorded_at": "2017-02-01T01:30:22", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:22 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8330:411B:8961EEA:AEBB8D1:58913A2D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4801", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "e724c57ebb9961c772a91e2dd7421c8d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:30:22", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:21Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:29:24Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:22 GMT", + "ETag": "\"67f87d36813b45cd9bc11cf4fbb9aff8\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8330:411B:8961EF2:AEBB8DE:58913A2E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4800", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:30:22", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"enhancement\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "157", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:22Z\",\"closed_at\":\"2017-02-01T01:30:22Z\",\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4226", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:22 GMT", + "ETag": "\"de9127ae18083ff5675f291529f5bad3\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8330:411B:8961F07:AEBB8ED:58913A2E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4799", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T02:49:03", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:03 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DB38:4114:9242103:BA1E61F:58914C9F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4854", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:49:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:02Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:48:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:03 GMT", + "ETag": "\"a6ce273277b86e7e4bcb09139f7e5b2f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DB38:4114:9242127:BA1E630:58914C9F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4853", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:49:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"enhancement\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "157", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:04Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:04Z\",\"closed_at\":\"2017-02-01T02:49:04Z\",\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4226", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:04 GMT", + "ETag": "\"d1e5cab9bec235fbed798a66bbade3ee\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DB38:4114:924215D:BA1E666:58914C9F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4852", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_42_3_issue_toggle__open.json b/tests/integration/cassettes/test_github_test_42_3_issue_toggle__open.json new file mode 100644 index 0000000..efa42f7 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_42_3_issue_toggle__open.json @@ -0,0 +1,914 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:44:32", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:32 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B4FE:4114:915EA05:B900479:58912F6F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4628", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:44:32", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":0,\"forks\":1,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:32 GMT", + "ETag": "\"536c222bb9773804c8546edba8409181\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B4FE:4114:915EA1B:B90048F:58912F70", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4627", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "0e17b94a265a427d9cafe798ceea7c02", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:44:32", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:43:55Z\",\"closed_at\":\"2017-02-01T00:43:55Z\",\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:43:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:43:55Z\",\"closed_at\":\"2017-02-01T00:43:55Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:43:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:43:56Z\",\"closed_at\":\"2017-02-01T00:43:55Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:43:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:43:56Z\",\"closed_at\":\"2017-02-01T00:43:56Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:43:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:43:56Z\",\"closed_at\":\"2017-02-01T00:43:56Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:43:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:43:56Z\",\"closed_at\":\"2017-02-01T00:43:56Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:43:57Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:43:57Z\",\"closed_at\":\"2017-02-01T00:43:57Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23661", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:32 GMT", + "ETag": "\"ee155932f6b332c62c30c54344000586\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B4FE:4114:915EA2B:B9004AD:58912F70", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4626", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:44:32", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"open\", \"labels\": [\"enhancement\", \"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "154", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:32Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3030", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:32 GMT", + "ETag": "\"79e3c1c5fec9ec331c7bca465a9cc49e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B4FE:4114:915EA54:B9004C9:58912F70", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4625", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T00:44:33", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #6\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":1,\"closed_issues\":5,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:33Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:33Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:33 GMT", + "ETag": "\"d84f93a646580001ab0858586b2ed5d0\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B4FE:4114:915EA79:B9004FD:58912F70", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4624", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "318e55760cf7cdb40e61175a4d36cd32", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6" + } + }, + { + "recorded_at": "2017-02-01T00:44:33", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #5\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":2,\"closed_issues\":4,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:33Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:33Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:33 GMT", + "ETag": "\"96189b7287cc54372353bfd5bda6e1e3\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B4FE:4114:915EAB1:B90054C:58912F71", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4623", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5" + } + }, + { + "recorded_at": "2017-02-01T00:44:34", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #4\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":3,\"closed_issues\":3,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:33Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:34Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:34 GMT", + "ETag": "\"a9d0172e0645603cfb313e2f72811cfd\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B4FE:4114:915EAE2:B900587:58912F71", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4622", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4" + } + }, + { + "recorded_at": "2017-02-01T00:44:34", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #3\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":4,\"closed_issues\":2,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:34Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:34Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:34 GMT", + "ETag": "\"63e63c52c000bfcd0e06ae00cfe99091\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B4FE:4114:915EB20:B9005D3:58912F72", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4621", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3" + } + }, + { + "recorded_at": "2017-02-01T00:44:34", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #2\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":5,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:34Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:34Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:34 GMT", + "ETag": "\"77d9958d932d6a6492d4410b68a307ad\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B4FE:4114:915EB47:B900605:58912F72", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4620", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2" + } + }, + { + "recorded_at": "2017-02-01T00:44:35", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #1\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:35 GMT", + "ETag": "\"ac27b1e060d3293283f9a93dc2173cd6\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B4FE:4114:915EB76:B90063B:58912F72", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4619", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "2c18a09f3ac5e4dd1e004af7c5a94769", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1" + } + }, + { + "recorded_at": "2017-02-01T01:30:23", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":6,\"forks\":1,\"open_issues\":6,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:23 GMT", + "ETag": "\"cde9e8014149516ad8ab5653988b8bd1\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A74E:4116:26F7316:3157965:58913A2E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4798", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:30:23", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:22Z\",\"closed_at\":\"2017-02-01T01:30:22Z\",\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:22Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24931", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:23 GMT", + "ETag": "\"20afccdee5a21b4fc01ae2ca03c0eae9\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A74E:4116:26F731E:3157970:58913A2F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4797", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:30:23", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"enhancement\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "155", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4206", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:23 GMT", + "ETag": "\"da0579263acf2fbee099ac6a058b1f3f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A74E:4116:26F7328:315797A:58913A2F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4796", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "ef96c2e493b28ffea49b891b085ed2dd", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T02:49:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":6,\"forks\":1,\"open_issues\":6,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:05 GMT", + "ETag": "\"cde9e8014149516ad8ab5653988b8bd1\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B738:4118:503B9E1:66116BD:58914CA0", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4851", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:49:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:04Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:04Z\",\"closed_at\":\"2017-02-01T02:49:04Z\",\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:04Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:04Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:04Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:04Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:04Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:04Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25861", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:05 GMT", + "ETag": "\"ceac8252bacee26e99c9d5b7ef1984c6\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B738:4118:503B9F5:66116D4:58914CA1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4850", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:49:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"enhancement\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "155", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:06Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4206", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:06 GMT", + "ETag": "\"a53a55d6e93b2fce74e5674177bf3aa0\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B738:4118:503BA08:66116EB:58914CA1", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4849", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_43_0_issue_get__close.json b/tests/integration/cassettes/test_github_test_43_0_issue_get__close.json new file mode 100644 index 0000000..48a8e67 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_43_0_issue_get__close.json @@ -0,0 +1,401 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:44:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:42 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D972:411B:8917CF4:AE5D674:58912F7A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4618", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "9e60649f02cd840ee8baa9960690f79f", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:44:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:43 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D972:411B:8917D05:AE5D684:58912F7A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4617", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "52437fedc85beec8da3449496900fb9a", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:44:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:32Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:33Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:33Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:34Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:34Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:34Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:43 GMT", + "ETag": "\"3e8294a01b34c60798761f5cfc31e6fa\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D972:411B:8917D0D:AE5D693:58912F7B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4616", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:30:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:50 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8392:4114:91B5D52:B96D9F5:58913A4A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4795", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:30:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:51 GMT", + "ETag": "\"f8f4202d32983934655768e3d0f6cef1\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "8392:4114:91B5D6D:B96DA11:58913A4A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4794", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:49:07", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:06 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DB5A:4114:92422C4:BA1E850:58914CA2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4848", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:49:07", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:06Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:07 GMT", + "ETag": "\"5771726c956f2e12cc15864471d46036\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DB5A:4114:92422F3:BA1E864:58914CA2", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4847", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_43_1_issue_set__close.json b/tests/integration/cassettes/test_github_test_43_1_issue_set__close.json new file mode 100644 index 0000000..c563f0a --- /dev/null +++ b/tests/integration/cassettes/test_github_test_43_1_issue_set__close.json @@ -0,0 +1,914 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:44:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:43 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B56E:411B:8917D38:AE5D6C7:58912F7B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4615", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:44:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:43 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B56E:411B:8917D4B:AE5D6DF:58912F7B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4614", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:44:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:32Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:33Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:33Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:34Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:34Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:34Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:35Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:44 GMT", + "ETag": "\"3e8294a01b34c60798761f5cfc31e6fa\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B56E:411B:8917D60:AE5D6F9:58912F7B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4613", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:44:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"closed\", \"labels\": [\"enhancement\", \"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "156", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:44Z\",\"closed_at\":\"2017-02-01T00:44:44Z\",\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3050", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:44 GMT", + "ETag": "\"1f6cec1099860325176997406b28aeab\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B56E:411B:8917D6F:AE5D70B:58912F7C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4612", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T00:44:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #6\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "113", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":5,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:44Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:44Z\",\"closed_at\":\"2017-02-01T00:44:44Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:44 GMT", + "ETag": "\"c9ea752d4c4ffea581a3656d9cc84fbb\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B56E:411B:8917D7F:AE5D723:58912F7C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4611", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6" + } + }, + { + "recorded_at": "2017-02-01T00:44:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #5\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "113", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":4,\"closed_issues\":2,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:44Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:44Z\",\"closed_at\":\"2017-02-01T00:44:44Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:44 GMT", + "ETag": "\"284ca0d6c8765c33569ea268c4258ee4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B56E:411B:8917DA6:AE5D74F:58912F7C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4610", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5" + } + }, + { + "recorded_at": "2017-02-01T00:44:45", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #4\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "113", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":3,\"closed_issues\":3,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"closed_at\":\"2017-02-01T00:44:45Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:45 GMT", + "ETag": "\"7645957d12d80267aa6f772a4802f759\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B56E:411B:8917DC1:AE5D784:58912F7C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4609", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4" + } + }, + { + "recorded_at": "2017-02-01T00:44:45", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #3\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "113", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":2,\"closed_issues\":4,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"closed_at\":\"2017-02-01T00:44:45Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:45 GMT", + "ETag": "\"a7d22558efd5886422480142f2f46b23\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B56E:411B:8917DD0:AE5D799:58912F7D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4608", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3" + } + }, + { + "recorded_at": "2017-02-01T00:44:45", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #2\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "113", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":1,\"closed_issues\":5,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"closed_at\":\"2017-02-01T00:44:45Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:45 GMT", + "ETag": "\"882b1f6cbc3f3284ff608e1ebcddbf23\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B56E:411B:8917DE6:AE5D7B1:58912F7D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4607", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "593010132f82159af0ded24b4932e109", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2" + } + }, + { + "recorded_at": "2017-02-01T00:44:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #1\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "113", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"closed_at\":\"2017-02-01T00:44:45Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4436", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:45 GMT", + "ETag": "\"0d82ebe7f1aacb8fc649970db862cb1b\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B56E:411B:8917E10:AE5D7DB:58912F7D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4606", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1" + } + }, + { + "recorded_at": "2017-02-01T01:30:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:51 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A7B2:411B:89629BB:AEBC6C4:58913A4B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4793", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:30:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:23Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:51 GMT", + "ETag": "\"f8f4202d32983934655768e3d0f6cef1\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A7B2:411B:89629CD:AEBC6D8:58913A4B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4792", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "52189b7290fad804d77890ef34a1eeae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:30:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"enhancement\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "157", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:52Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:52Z\",\"closed_at\":\"2017-02-01T01:30:52Z\",\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4226", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:52 GMT", + "ETag": "\"24852f7e5ff980b8b8f6dc9eae51ad10\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A7B2:411B:89629E7:AEBC6F4:58913A4B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4791", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T02:49:08", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:07 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B758:411B:89E5A61:AF6181D:58914CA3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4846", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:49:08", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:06Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:05Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:08 GMT", + "ETag": "\"5771726c956f2e12cc15864471d46036\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B758:411B:89E5A7F:AF61836:58914CA3", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4845", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:49:08", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"closed\", \"milestone\": 1, \"labels\": [\"enhancement\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "157", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:08Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:08Z\",\"closed_at\":\"2017-02-01T02:49:08Z\",\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4226", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:08 GMT", + "ETag": "\"ed28aa76db307b75dc3c5107ecf7d3ad\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B758:411B:89E5AAB:AF61865:58914CA4", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4844", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_43_2_issue_unset__close.json b/tests/integration/cassettes/test_github_test_43_2_issue_unset__close.json new file mode 100644 index 0000000..ec99467 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_43_2_issue_unset__close.json @@ -0,0 +1,914 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:44:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:46 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9A0:411B:8917E37:AE5D81C:58912F7E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4605", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "bae57931a6fe678a3dffe9be8e7819c8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:44:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":0,\"forks\":1,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:46 GMT", + "ETag": "\"536c222bb9773804c8546edba8409181\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9A0:411B:8917E47:AE5D82C:58912F7E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4604", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:44:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:44Z\",\"closed_at\":\"2017-02-01T00:44:44Z\",\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:44Z\",\"closed_at\":\"2017-02-01T00:44:44Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:44Z\",\"closed_at\":\"2017-02-01T00:44:44Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"closed_at\":\"2017-02-01T00:44:45Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"closed_at\":\"2017-02-01T00:44:45Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"closed_at\":\"2017-02-01T00:44:45Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":0,\"closed_issues\":6,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:45Z\",\"closed_at\":\"2017-02-01T00:44:45Z\",\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23661", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:46 GMT", + "ETag": "\"da397bf647786e8e3ecef86c691422ed\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9A0:411B:8917E58:AE5D843:58912F7E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4603", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:44:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"open\", \"labels\": [\"enhancement\", \"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "154", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:47Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3030", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:47 GMT", + "ETag": "\"761df998d989ce3f742fcef8fe95a0f3\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9A0:411B:8917E74:AE5D860:58912F7E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4602", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a474937f3b2fa272558fa6dc951018ad", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T00:44:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #6\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":1,\"closed_issues\":5,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:47Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:47Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:47 GMT", + "ETag": "\"1abeed42c01cd7aabe07e2cc6d2e7467\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9A0:411B:8917E81:AE5D87E:58912F7F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4601", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6" + } + }, + { + "recorded_at": "2017-02-01T00:44:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #5\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":2,\"closed_issues\":4,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:47Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:47Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:47 GMT", + "ETag": "\"f894dfd8f078d35fdbc4b01659a37d23\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9A0:411B:8917E92:AE5D88F:58912F7F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4600", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5" + } + }, + { + "recorded_at": "2017-02-01T00:44:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #4\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":3,\"closed_issues\":3,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:47Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:48Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:48 GMT", + "ETag": "\"87f5bfed24954b7587d7eb6d61fcfd94\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9A0:411B:8917EB4:AE5D8B0:58912F7F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4599", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a474937f3b2fa272558fa6dc951018ad", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4" + } + }, + { + "recorded_at": "2017-02-01T00:44:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #3\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":4,\"closed_issues\":2,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:48Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:48Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:48 GMT", + "ETag": "\"9c963135eb211493385cf0564ca99e9f\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9A0:411B:8917EC7:AE5D8CD:58912F80", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4598", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3" + } + }, + { + "recorded_at": "2017-02-01T00:44:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #2\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":5,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:48Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:48Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:48 GMT", + "ETag": "\"0e64618a7c5b24f1428a42d718c4934e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9A0:411B:8917EDA:AE5D8EA:58912F80", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4597", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "7b641bda7ec2ca7cd9df72d2578baf75", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2" + } + }, + { + "recorded_at": "2017-02-01T00:44:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #1\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:49 GMT", + "ETag": "\"e5e627772f3cf2c92ecf61abdda87509\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "D9A0:411B:8917EEA:AE5D900:58912F80", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4596", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1" + } + }, + { + "recorded_at": "2017-02-01T01:30:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":6,\"forks\":1,\"open_issues\":6,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:52 GMT", + "ETag": "\"cde9e8014149516ad8ab5653988b8bd1\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83AE:411B:8962A28:AEBC74D:58913A4C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4790", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:30:52", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:52Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:52Z\",\"closed_at\":\"2017-02-01T01:30:52Z\",\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:52Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:52Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:52Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:52Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:52Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:52Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24931", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:52 GMT", + "ETag": "\"ff7272b87ab77c7bd8f04af8fdfd2a9b\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83AE:411B:8962A37:AEBC75D:58913A4C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4789", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:30:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"enhancement\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "155", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4206", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:53 GMT", + "ETag": "\"465e44b7be80d2f963a1613b8990bb8e\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83AE:411B:8962A56:AEBC770:58913A4C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4788", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T02:49:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":6,\"forks\":1,\"open_issues\":6,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:09 GMT", + "ETag": "\"cde9e8014149516ad8ab5653988b8bd1\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DB7C:411B:89E5B16:AF61916:58914CA5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4843", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "173530fed4bbeb1e264b2ed22e8b5c20", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:49:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"closed\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:08Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:08Z\",\"closed_at\":\"2017-02-01T02:49:08Z\",\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:08Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:08Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:08Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:08Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:08Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":1,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:08Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25861", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:09 GMT", + "ETag": "\"f8a8002c4bd1ac1add17a36e9421adec\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DB7C:411B:89E5B27:AF6191E:58914CA5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4842", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:49:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"enhancement\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "155", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4206", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:10 GMT", + "ETag": "\"c4ae7219383e60e4628fd08e42952d41\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DB7C:411B:89E5B58:AF6193D:58914CA5", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4841", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_43_3_issue_toggle__close.json b/tests/integration/cassettes/test_github_test_43_3_issue_toggle__close.json new file mode 100644 index 0000000..7ac31fe --- /dev/null +++ b/tests/integration/cassettes/test_github_test_43_3_issue_toggle__close.json @@ -0,0 +1,914 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:44:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:49 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5B6:4118:4FCA06F:6580BC8:58912F81", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4595", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "ef96c2e493b28ffea49b891b085ed2dd", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:44:49", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:49 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5B6:4118:4FCA074:6580BD3:58912F81", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4594", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:44:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:47Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:47Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:47Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:48Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:48Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:48Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:50 GMT", + "ETag": "\"1514142723d5614b0f6819e3af874180\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5B6:4118:4FCA07B:6580BDE:58912F81", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4593", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "13d09b732ebe76f892093130dc088652", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:44:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"open\", \"labels\": [\"enhancement\", \"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "154", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "3030", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:50 GMT", + "ETag": "\"5f2865b40d83595afebca43b038b4971\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5B6:4118:4FCA084:6580BE8:58912F82", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4592", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T00:44:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #6\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:50 GMT", + "ETag": "\"f354b18a32e9bcc97f6c932e971d8f7a\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5B6:4118:4FCA090:6580BF9:58912F82", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4591", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6" + } + }, + { + "recorded_at": "2017-02-01T00:44:50", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #5\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:50 GMT", + "ETag": "\"96d5a2c46b6fead897fdf273fa7dcacc\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5B6:4118:4FCA098:6580C00:58912F82", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4590", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "88531cdcf1929112ec480e1806d44a33", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5" + } + }, + { + "recorded_at": "2017-02-01T00:44:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #4\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/4" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:50 GMT", + "ETag": "\"949203cf03d9621f66de2e88236e4a15\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5B6:4118:4FCA0A9:6580C12:58912F82", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4589", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "e183f7c661b1bbc2c987b3c4dc7b04e0", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/4" + } + }, + { + "recorded_at": "2017-02-01T00:44:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #3\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/3" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:51 GMT", + "ETag": "\"3958bda24bdf82fb3b76dbed2ca7772d\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5B6:4118:4FCA0B1:6580C24:58912F82", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4588", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/3" + } + }, + { + "recorded_at": "2017-02-01T00:44:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #2\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/2" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:51 GMT", + "ETag": "\"04b25a8ef53af254aab528ca017356c7\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5B6:4118:4FCA0C2:6580C33:58912F83", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4587", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/2" + } + }, + { + "recorded_at": "2017-02-01T00:44:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"test pr #1\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"help wanted\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "111", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/1" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4416", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:44:51 GMT", + "ETag": "\"a32bec747a8cb67dfa395d1dc8290182\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B5B6:4118:4FCA0CC:6580C3F:58912F83", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4586", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "c6c65e5196703428e7641f7d1e9bc353", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/1" + } + }, + { + "recorded_at": "2017-02-01T01:30:53", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:53 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A7CA:411B:8962A8F:AEBC7CA:58913A4D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4787", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:30:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:53 GMT", + "ETag": "\"b6418d74ec66021e98d64dd5fcb06e9b\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A7CA:411B:8962AA2:AEBC7E5:58913A4D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4786", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "2c18a09f3ac5e4dd1e004af7c5a94769", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:30:54", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"enhancement\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "155", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:54Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4206", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:30:54 GMT", + "ETag": "\"1fdcf4f985500a0a35a1ee1c6e4df261\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A7CA:411B:8962ABF:AEBC7F7:58913A4D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4785", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + }, + { + "recorded_at": "2017-02-01T02:49:11", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:11 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B77C:4118:503BB00:6611840:58914CA6", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4840", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "c6c65e5196703428e7641f7d1e9bc353", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T02:49:11", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T02:48:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T02:48:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T02:48:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "25841", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:11 GMT", + "ETag": "\"f3aa9f8f93200bc28df5499de6887085\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B77C:4118:503BB1F:661184B:58914CA7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4839", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "e724c57ebb9961c772a91e2dd7421c8d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T02:49:11", + "request": { + "body": { + "encoding": "utf-8", + "string": "{\"title\": \"This is a test\", \"body\": \"How successful is that test?\", \"assignee\": \"\", \"state\": \"open\", \"milestone\": 1, \"labels\": [\"enhancement\", \"question\"]}" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Length": "155", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "PATCH", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T02:49:11Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\",\"closed_by\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false}}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "4206", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 02:49:11 GMT", + "ETag": "\"5557bd6f89c4f012b74f68f7ec445577\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "B77C:4118:503BB2E:6611876:58914CA7", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4838", + "X-RateLimit-Reset": "1485917758", + "X-Served-By": "4537b68c46a1b65b106078b0a2578ee2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_44_0_issue_get__read.json b/tests/integration/cassettes/test_github_test_44_0_issue_get__read.json new file mode 100644 index 0000000..121c24d --- /dev/null +++ b/tests/integration/cassettes/test_github_test_44_0_issue_get__read.json @@ -0,0 +1,402 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:51:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:40 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DFCE:4114:916C748:B911A10:5891311C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4573", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:51:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:40 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DFCE:4114:916C767:B911A30:5891311C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4572", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "c6c65e5196703428e7641f7d1e9bc353", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:51:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:41 GMT", + "ETag": "\"7193fc46e45c3a701c171299d15e37b5\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DFCE:4114:916C78B:B911A5D:5891311C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4571", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:51:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:41 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DFCE:4114:916C7CD:B911A8E:5891311D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4570", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "e183f7c661b1bbc2c987b3c4dc7b04e0", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:03", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:03 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83EC:4114:91B63E9:B96E21C:58913A56", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4784", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:31:03", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:54Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:03 GMT", + "ETag": "\"06c06d8fe9f5379fcee615a09caabf67\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83EC:4114:91B63FA:B96E232:58913A57", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4783", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "46808ddc41c302090177e58148908b23", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:03", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:03 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83EC:4114:91B6424:B96E257:58913A57", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4782", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "626ed3a9050b8faa02ef5f3c540b508d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_44_0_issue_get__subscription.json b/tests/integration/cassettes/test_github_test_44_0_issue_get__subscription.json new file mode 100644 index 0000000..afd5104 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_44_0_issue_get__subscription.json @@ -0,0 +1,288 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:52:13", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:13 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "E0C6:4118:4FD12F4:6589D4D:5891313D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4557", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:52:14", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:14 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "E0C6:4118:4FD12FD:6589D57:5891313D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4556", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:52:14", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:14 GMT", + "ETag": "\"7193fc46e45c3a701c171299d15e37b5\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "E0C6:4118:4FD1306:6589D64:5891313E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4555", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:52:14", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:14 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "E0C6:4118:4FD131A:6589D76:5891313E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4554", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a474937f3b2fa272558fa6dc951018ad", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:52:15", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":939721359,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939721359\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T18:43:28Z\",\"rename\":{\"from\":\"ttt\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":939756859,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939756859\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:09:41Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":939771281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:06Z\"},{\"id\":939771814,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771814\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:29Z\"},{\"id\":939779163,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779163\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939779164,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779164\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782069,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782069\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:30Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782356,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782356\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:42Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939783789,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939783789\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:28:47Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":940135385,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940135385\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-28T01:36:56Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":940424285,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940424285\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-29T01:08:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165354,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165354\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165355,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165355\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168769,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168769\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168770,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168770\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942273301,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942273301\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T23:36:40Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452463,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452463\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460331,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460331\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:13Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460337,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460337\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:14Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460420,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460420\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460421,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460421\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":943699772,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943699772\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:11Z\",\"rename\":{\"from\":\"This is a test\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":943700398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943700398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:38Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":943701386,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943701386\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:05:17Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705225,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705225\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705226,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705226\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705332,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705332\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:45Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705458,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705458\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705459,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705459\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924109,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924109\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:41Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943924339,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924339\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:51Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924484,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924484\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:57Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943924666,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924666\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:04Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925027,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925027\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:18Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943925192,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925192\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:23Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925366,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925366\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925367,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925367\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925565,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925565\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:38Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925722,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925722\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:45Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925723,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925723\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925724,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925724\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925887,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925887\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:53Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943969364,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943969364\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:14:10Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944014791,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944014791\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:57:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944016455,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944016455\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:59:30Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017680,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017680\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017787,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017787\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:40Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:25Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019472,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019472\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:29Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019518,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019518\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944051883,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944051883\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:37:19Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944053948,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944053948\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944054067,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944054067\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055863,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055863\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:41Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055998,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055998\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:48Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944056046,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944056046\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:49Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944057763,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944057763\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:43:55Z\"},{\"id\":944058281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:32Z\"},{\"id\":944058467,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058467\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:44Z\"},{\"id\":944058506,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058506\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:47Z\"}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "67507", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:14 GMT", + "ETag": "\"bf841398c7afaadf066c0e3b02f69cd0\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "E0C6:4118:4FD1327:6589D8B:5891313E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4553", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} diff --git a/tests/integration/cassettes/test_github_test_44_1_issue_set__read.json b/tests/integration/cassettes/test_github_test_44_1_issue_set__read.json new file mode 100644 index 0000000..7938f1d --- /dev/null +++ b/tests/integration/cassettes/test_github_test_44_1_issue_set__read.json @@ -0,0 +1,402 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:51:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:41 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BBC6:4114:916C821:B911B0E:5891311D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4569", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "4c8b2d4732c413f4b9aefe394bd65569", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:51:41", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:41 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BBC6:4114:916C83D:B911B2B:5891311D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4568", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a51acaae89a7607fd7ee967627be18e4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:51:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:42 GMT", + "ETag": "\"7193fc46e45c3a701c171299d15e37b5\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BBC6:4114:916C869:B911B55:5891311D", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4567", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:51:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:42 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BBC6:4114:916C89A:B911B7E:5891311E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4566", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "07ff1c8a09e44b62e277fae50a1b1dc4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:04 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A800:4118:4FF5C4D:65B84FC:58913A57", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4781", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:31:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:54Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:04 GMT", + "ETag": "\"06c06d8fe9f5379fcee615a09caabf67\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A800:4118:4FF5C58:65B850A:58913A58", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4780", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:04 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A800:4118:4FF5C74:65B8521:58913A58", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4779", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a241e1a8264a6ace03db946c85b92db3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_44_1_issue_set__subscription.json b/tests/integration/cassettes/test_github_test_44_1_issue_set__subscription.json new file mode 100644 index 0000000..03381d8 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_44_1_issue_set__subscription.json @@ -0,0 +1,288 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:52:15", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:15 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BCD0:4114:916DA22:B91318F:5891313F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4552", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "13d09b732ebe76f892093130dc088652", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:52:15", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:15 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BCD0:4114:916DA34:B91319C:5891313F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4551", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "ef96c2e493b28ffea49b891b085ed2dd", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:52:15", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:15 GMT", + "ETag": "\"7193fc46e45c3a701c171299d15e37b5\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BCD0:4114:916DA44:B9131B9:5891313F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4550", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "52189b7290fad804d77890ef34a1eeae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:52:16", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:16 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BCD0:4114:916DA69:B9131CD:5891313F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4549", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:52:16", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":939721359,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939721359\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T18:43:28Z\",\"rename\":{\"from\":\"ttt\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":939756859,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939756859\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:09:41Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":939771281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:06Z\"},{\"id\":939771814,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771814\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:29Z\"},{\"id\":939779163,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779163\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939779164,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779164\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782069,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782069\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:30Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782356,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782356\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:42Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939783789,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939783789\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:28:47Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":940135385,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940135385\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-28T01:36:56Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":940424285,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940424285\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-29T01:08:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165354,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165354\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165355,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165355\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168769,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168769\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168770,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168770\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942273301,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942273301\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T23:36:40Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452463,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452463\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460331,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460331\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:13Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460337,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460337\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:14Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460420,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460420\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460421,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460421\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":943699772,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943699772\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:11Z\",\"rename\":{\"from\":\"This is a test\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":943700398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943700398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:38Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":943701386,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943701386\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:05:17Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705225,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705225\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705226,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705226\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705332,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705332\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:45Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705458,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705458\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705459,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705459\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924109,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924109\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:41Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943924339,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924339\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:51Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924484,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924484\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:57Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943924666,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924666\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:04Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925027,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925027\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:18Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943925192,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925192\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:23Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925366,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925366\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925367,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925367\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925565,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925565\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:38Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925722,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925722\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:45Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925723,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925723\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925724,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925724\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925887,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925887\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:53Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943969364,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943969364\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:14:10Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944014791,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944014791\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:57:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944016455,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944016455\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:59:30Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017680,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017680\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017787,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017787\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:40Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:25Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019472,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019472\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:29Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019518,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019518\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944051883,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944051883\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:37:19Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944053948,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944053948\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944054067,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944054067\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055863,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055863\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:41Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055998,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055998\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:48Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944056046,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944056046\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:49Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944057763,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944057763\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:43:55Z\"},{\"id\":944058281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:32Z\"},{\"id\":944058467,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058467\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:44Z\"},{\"id\":944058506,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058506\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:47Z\"}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "67507", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:16 GMT", + "ETag": "\"bf841398c7afaadf066c0e3b02f69cd0\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BCD0:4114:916DA77:B9131F8:58913140", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4548", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} diff --git a/tests/integration/cassettes/test_github_test_44_2_issue_unset__read.json b/tests/integration/cassettes/test_github_test_44_2_issue_unset__read.json new file mode 100644 index 0000000..1552498 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_44_2_issue_unset__read.json @@ -0,0 +1,402 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:51:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:42 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DFF0:411B:892369B:AE6C46D:5891311E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4565", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "e183f7c661b1bbc2c987b3c4dc7b04e0", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:51:42", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:42 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DFF0:411B:89236B4:AE6C485:5891311E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4564", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:51:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:42 GMT", + "ETag": "\"7193fc46e45c3a701c171299d15e37b5\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DFF0:411B:89236CD:AE6C4A5:5891311E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4563", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:51:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:43 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "DFF0:411B:89236F3:AE6C4BF:5891311E", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4562", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:04", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:04 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83F4:4114:91B64C6:B96E337:58913A58", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4778", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "2811da37fbdda4367181b328b22b2499", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:31:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:54Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:05 GMT", + "ETag": "\"06c06d8fe9f5379fcee615a09caabf67\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83F4:4114:91B64E3:B96E34F:58913A58", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4777", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a30e6f9aa7cf5731b87dfb3b9992202d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:05 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "83F4:4114:91B6504:B96E36C:58913A59", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4776", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "7b641bda7ec2ca7cd9df72d2578baf75", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_44_2_issue_unset__subscription.json b/tests/integration/cassettes/test_github_test_44_2_issue_unset__subscription.json new file mode 100644 index 0000000..1e15516 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_44_2_issue_unset__subscription.json @@ -0,0 +1,288 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:52:17", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:17 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "E104:411B:89243E6:AE6D569:58913140", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4547", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "d0b3c2c33a23690498aa8e70a435a259", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:52:17", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:17 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "E104:411B:89243F0:AE6D576:58913141", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4546", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "e724c57ebb9961c772a91e2dd7421c8d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:52:17", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:17 GMT", + "ETag": "\"7193fc46e45c3a701c171299d15e37b5\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "E104:411B:89243FE:AE6D58B:58913141", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4545", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "1e9204dbc0447a6f39c3b3c44d87b3f8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:52:17", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:17 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "E104:411B:8924417:AE6D599:58913141", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4544", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a7f8a126c9ed3f1c4715a34c0ddc7290", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:52:18", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":939721359,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939721359\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T18:43:28Z\",\"rename\":{\"from\":\"ttt\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":939756859,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939756859\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:09:41Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":939771281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:06Z\"},{\"id\":939771814,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771814\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:29Z\"},{\"id\":939779163,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779163\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939779164,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779164\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782069,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782069\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:30Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782356,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782356\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:42Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939783789,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939783789\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:28:47Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":940135385,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940135385\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-28T01:36:56Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":940424285,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940424285\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-29T01:08:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165354,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165354\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165355,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165355\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168769,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168769\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168770,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168770\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942273301,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942273301\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T23:36:40Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452463,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452463\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460331,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460331\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:13Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460337,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460337\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:14Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460420,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460420\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460421,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460421\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":943699772,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943699772\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:11Z\",\"rename\":{\"from\":\"This is a test\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":943700398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943700398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:38Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":943701386,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943701386\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:05:17Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705225,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705225\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705226,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705226\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705332,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705332\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:45Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705458,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705458\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705459,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705459\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924109,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924109\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:41Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943924339,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924339\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:51Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924484,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924484\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:57Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943924666,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924666\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:04Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925027,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925027\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:18Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943925192,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925192\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:23Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925366,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925366\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925367,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925367\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925565,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925565\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:38Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925722,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925722\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:45Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925723,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925723\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925724,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925724\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925887,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925887\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:53Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943969364,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943969364\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:14:10Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944014791,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944014791\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:57:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944016455,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944016455\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:59:30Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017680,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017680\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017787,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017787\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:40Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:25Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019472,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019472\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:29Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019518,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019518\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944051883,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944051883\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:37:19Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944053948,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944053948\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944054067,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944054067\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055863,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055863\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:41Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055998,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055998\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:48Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944056046,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944056046\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:49Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944057763,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944057763\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:43:55Z\"},{\"id\":944058281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:32Z\"},{\"id\":944058467,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058467\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:44Z\"},{\"id\":944058506,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058506\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:47Z\"}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "67507", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:17 GMT", + "ETag": "\"bf841398c7afaadf066c0e3b02f69cd0\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "E104:411B:8924427:AE6D5BA:58913141", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4543", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} diff --git a/tests/integration/cassettes/test_github_test_44_3_issue_toggle__read.json b/tests/integration/cassettes/test_github_test_44_3_issue_toggle__read.json new file mode 100644 index 0000000..cb17450 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_44_3_issue_toggle__read.json @@ -0,0 +1,402 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:51:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:43 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BBF6:4116:26E1D94:313CC6A:5891311F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4561", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:51:43", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:43 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BBF6:4116:26E1D98:313CC6F:5891311F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4560", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:51:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:43 GMT", + "ETag": "\"7193fc46e45c3a701c171299d15e37b5\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BBF6:4116:26E1DA1:313CC75:5891311F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4559", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "139317cebd6caf9cd03889139437f00b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:51:44", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:51:44 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BBF6:4116:26E1DA7:313CC7D:5891311F", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4558", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "bae57931a6fe678a3dffe9be8e7819c8", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:05", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:05 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A814:4114:91B6540:B96E3C6:58913A59", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4775", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "e724c57ebb9961c772a91e2dd7421c8d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:31:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:54Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:05 GMT", + "ETag": "\"06c06d8fe9f5379fcee615a09caabf67\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A814:4114:91B6553:B96E3DE:58913A59", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4774", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a7f8a126c9ed3f1c4715a34c0ddc7290", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:06", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:06 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A814:4114:91B657F:B96E403:58913A59", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4773", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_44_3_issue_toggle__subscription.json b/tests/integration/cassettes/test_github_test_44_3_issue_toggle__subscription.json new file mode 100644 index 0000000..6f0160e --- /dev/null +++ b/tests/integration/cassettes/test_github_test_44_3_issue_toggle__subscription.json @@ -0,0 +1,288 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T00:52:18", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":93,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:18 GMT", + "ETag": "\"1d82c2c7174688d3e410d8908b5dab40\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BCFE:4118:4FD140D:6589EA9:58913142", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4542", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T00:52:18", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:18 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BCFE:4118:4FD1414:6589EB9:58913142", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4541", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T00:52:19", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T00:44:50Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":6,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T00:44:49Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T00:44:51Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "23521", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:18 GMT", + "ETag": "\"7193fc46e45c3a701c171299d15e37b5\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BCFE:4118:4FD1424:6589EC7:58913142", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4540", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "52189b7290fad804d77890ef34a1eeae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:52:19", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:19 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BCFE:4118:4FD143A:6589EDC:58913142", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4539", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "13d09b732ebe76f892093130dc088652", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T00:52:19", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":939721359,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939721359\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T18:43:28Z\",\"rename\":{\"from\":\"ttt\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":939756859,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939756859\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:09:41Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":939771281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:06Z\"},{\"id\":939771814,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771814\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:29Z\"},{\"id\":939779163,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779163\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939779164,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779164\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782069,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782069\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:30Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782356,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782356\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:42Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939783789,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939783789\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:28:47Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":940135385,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940135385\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-28T01:36:56Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":940424285,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940424285\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-29T01:08:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165354,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165354\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165355,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165355\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168769,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168769\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168770,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168770\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942273301,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942273301\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T23:36:40Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452463,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452463\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460331,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460331\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:13Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460337,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460337\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:14Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460420,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460420\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460421,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460421\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":943699772,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943699772\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:11Z\",\"rename\":{\"from\":\"This is a test\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":943700398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943700398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:38Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":943701386,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943701386\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:05:17Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705225,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705225\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705226,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705226\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705332,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705332\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:45Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705458,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705458\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705459,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705459\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924109,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924109\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:41Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943924339,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924339\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:51Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924484,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924484\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:57Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943924666,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924666\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:04Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925027,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925027\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:18Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943925192,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925192\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:23Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925366,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925366\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925367,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925367\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925565,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925565\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:38Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925722,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925722\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:45Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925723,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925723\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925724,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925724\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925887,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925887\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:53Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943969364,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943969364\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:14:10Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944014791,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944014791\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:57:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944016455,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944016455\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:59:30Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017680,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017680\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017787,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017787\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:40Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:25Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019472,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019472\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:29Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019518,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019518\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944051883,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944051883\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:37:19Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944053948,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944053948\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944054067,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944054067\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055863,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055863\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:41Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055998,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055998\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:48Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944056046,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944056046\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:49Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944057763,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944057763\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:43:55Z\"},{\"id\":944058281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:32Z\"},{\"id\":944058467,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058467\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:44Z\"},{\"id\":944058506,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058506\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:47Z\"}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "67507", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 00:52:19 GMT", + "ETag": "\"bf841398c7afaadf066c0e3b02f69cd0\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "BCFE:4118:4FD144B:6589EF0:58913143", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4538", + "X-RateLimit-Reset": "1485910554", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} diff --git a/tests/integration/cassettes/test_github_test_45_0_issue_get__subscription.json b/tests/integration/cassettes/test_github_test_45_0_issue_get__subscription.json new file mode 100644 index 0000000..2ab009b --- /dev/null +++ b/tests/integration/cassettes/test_github_test_45_0_issue_get__subscription.json @@ -0,0 +1,458 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T11:53:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:53:46 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EB46:411B:8D991E3:B4170E9:5891CC4A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4997", + "X-RateLimit-Reset": "1485952469", + "X-Served-By": "a51acaae89a7607fd7ee967627be18e4", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T11:53:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:53:47 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EB46:411B:8D991F5:B417100:5891CC4A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4996", + "X-RateLimit-Reset": "1485952469", + "X-Served-By": "ef96c2e493b28ffea49b891b085ed2dd", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T11:53:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T11:22:09Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T11:22:02Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T11:22:03Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T11:22:03Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T11:22:03Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T11:22:04Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228925,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/help%20wanted\",\"name\":\"help wanted\",\"color\":\"128A0C\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T02:49:10Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T11:22:05Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "26278", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:53:47 GMT", + "ETag": "\"dc61af9abcf5cd9a193fc54a033aed9c\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EB46:411B:8D99205:B417120:5891CC4B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4995", + "X-RateLimit-Reset": "1485952469", + "X-Served-By": "593010132f82159af0ded24b4932e109", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:53:46", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:53:47 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EB46:411B:8D9922A:B417137:5891CC4B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1485952469", + "X-Served-By": "02ea60dfed58b2a09106fafd6ca0c108", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:53:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":939721359,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939721359\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T18:43:28Z\",\"rename\":{\"from\":\"ttt\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":939756859,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939756859\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:09:41Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":939771281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771281\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:06Z\"},{\"id\":939771814,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771814\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:29Z\"},{\"id\":939779163,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779163\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939779164,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779164\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782069,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782069\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:30Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782356,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782356\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:42Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939783789,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939783789\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:28:47Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":940135385,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940135385\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-28T01:36:56Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":940424285,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940424285\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-29T01:08:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165354,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165354\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165355,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165355\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168769,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168769\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168770,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168770\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942273301,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942273301\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T23:36:40Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452461\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452463,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452463\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460331,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460331\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:13Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460337,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460337\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:14Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460420,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460420\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460421,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460421\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":943699772,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943699772\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:11Z\",\"rename\":{\"from\":\"This is a test\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":943700398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943700398\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:38Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":943701386,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943701386\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:05:17Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705225,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705225\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705226,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705226\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705332,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705332\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:45Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705458,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705458\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705459,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705459\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705461\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924109,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924109\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:41Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943924339,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924339\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:51Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924484,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924484\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:57Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943924666,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924666\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:04Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925027,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925027\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:18Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943925192,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925192\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:23Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925366,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925366\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925367,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925367\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925565,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925565\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:38Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925722,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925722\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:45Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925723,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925723\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925724,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925724\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925887,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925887\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:53Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943969364,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943969364\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:14:10Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944014791,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944014791\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:57:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944016455,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944016455\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:59:30Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017680,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017680\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017787,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017787\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:40Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019398\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:25Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019472,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019472\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:29Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019518,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019518\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944051883,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944051883\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:37:19Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944053948,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944053948\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944054067,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944054067\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055863,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055863\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:41Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055998,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055998\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:48Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944056046,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944056046\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:49Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944057763,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944057763\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:43:55Z\"},{\"id\":944058281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058281\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:32Z\"},{\"id\":944058467,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058467\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:44Z\"},{\"id\":944058506,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058506\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:47Z\"},{\"id\":944096422,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096422\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:23Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096452,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096452\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:25Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096453,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096453\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:25Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096490,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096490\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:27Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096513,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096513\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096514,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096514\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:29Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096515,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096515\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:29Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096541,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096541\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:30Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944096556,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096556\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:31Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096573,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096573\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:32Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096590,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096590\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:34Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096626,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096626\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:36Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944096645,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096645\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:37Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096658,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096658\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:38Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096659,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096659\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:38Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096676,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096676\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:39Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096693,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096693\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:40Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096694,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096694\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:40Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096695,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096695\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:40Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096709,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096709\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:42Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944098584,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098584\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:28:52Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944098986,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098986\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:29:22Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944098998,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098998\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:29:23Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944099016,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944099016\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:29:24Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944099838,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944099838\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:22Z\"},{\"id\":944099865,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944099865\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:23Z\"},{\"id\":944100240,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944100240\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:52Z\"},{\"id\":944100276,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944100276\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:53Z\"},{\"id\":944158924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944158924\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:24Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944158957,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944158957\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:27Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944158958,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944158958\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:27Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944158999,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944158999\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:30Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944159041,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159041\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:33Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944159042,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159042\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:33Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944159043,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159043\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:33Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944159072,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159072\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:34Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944159084,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159084\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:35Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944159092,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159092\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:37Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "108874", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:53:47 GMT", + "ETag": "\"5a99a0035d0a78c22a570321a13aaf19\"", + "Link": "<https://api.github.com/repositories/79663368/issues/7/events?per_page=100&page=2>; rel=\"next\", <https://api.github.com/repositories/79663368/issues/7/events?per_page=100&page=2>; rel=\"last\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EB46:411B:8D99242:B417164:5891CC4B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4993", + "X-RateLimit-Reset": "1485952469", + "X-Served-By": "01d096e6cfe28f8aea352e988c332cd3", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:53:47", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repositories/79663368/issues/7/events?per_page=100&page=2" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":944159112,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159112\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:38Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944159125,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159125\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:41Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944159157,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159157\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:43Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944159164,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159164\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:44Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944159166,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159166\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:44Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944159187,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159187\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:46Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944159206,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159206\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:47Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944159207,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159207\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:47Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944159208,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159208\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:47Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944159214,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159214\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:49Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944159244,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159244\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:51Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944159292,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159292\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:56Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944159304,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159304\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:57Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944159387,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159387\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:49:04Z\"},{\"id\":944159405,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159405\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:49:05Z\"},{\"id\":944159446,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159446\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:49:08Z\"},{\"id\":944159454,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159454\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:49:10Z\"},{\"id\":944588644,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588644\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:21:53Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944588712,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588712\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:21:57Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944588713,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588713\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:21:57Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944588787,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588787\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:22:01Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944588893,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588893\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:22:07Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944588894,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588894\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:22:07Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944588895,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588895\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:22:07Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944588931,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588931\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:22:09Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "27162", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:53:48 GMT", + "ETag": "\"779e7a1e40489e65033ced1e933b8c59\"", + "Link": "<https://api.github.com/repositories/79663368/issues/7/events?per_page=100&page=1>; rel=\"first\", <https://api.github.com/repositories/79663368/issues/7/events?per_page=100&page=1>; rel=\"prev\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EB46:411B:8D99291:B41718A:5891CC4B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4992", + "X-RateLimit-Reset": "1485952469", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repositories/79663368/issues/7/events?per_page=100&page=2" + } + }, + { + "recorded_at": "2017-02-01T11:53:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/6/events?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":940424286,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940424286\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-29T01:08:31Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165366,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165366\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165367,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165367\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168774,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168774\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:11Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168776,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168776\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:11Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942273835,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942273835\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T23:37:14Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705165,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705165\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:39Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705280,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705280\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:42Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705282,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705282\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:42Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705336,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705336\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:45Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705470,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705470\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705471,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705471\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705473,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705473\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924121,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924121\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:41Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943924353,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924353\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:52Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924498,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924498\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:57Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943924688,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924688\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:05Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925041,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925041\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:18Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943925208,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925208\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:24Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925384,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925384\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:31Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925385,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925385\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:31Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925580,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925580\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:39Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925751,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925751\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925752,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925752\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925753,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925753\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925900,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925900\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:54Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943982745,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943982745\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:25:33Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944027465,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944027465\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:10:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944051891,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944051891\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:37:19Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944053954,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944053954\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944054076,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944054076\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944057765,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944057765\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:43:55Z\"},{\"id\":944058285,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058285\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:33Z\"},{\"id\":944058473,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058473\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:44Z\"},{\"id\":944058508,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058508\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:47Z\"},{\"id\":944096435,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096435\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:24Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096466,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096466\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:26Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096467,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096467\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:26Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096492,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096492\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:27Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944098590,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098590\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:28:52Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944158936,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944158936\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:26Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944158968,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944158968\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:28Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944158969,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944158969\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:28Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944159001,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159001\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:30Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944159245,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159245\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:51Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944588685,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588685\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:21:55Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944588737,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588737\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:21:59Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944588738,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588738\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:21:59Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944588793,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588793\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:22:02Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "53381", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:53:48 GMT", + "ETag": "\"1905b2d3c297b5ce5444baf624b5cb65\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EB46:411B:8D992AE:B4171F5:5891CC4C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4991", + "X-RateLimit-Reset": "1485952469", + "X-Served-By": "3e3b9690823fb031da84658eb58aa83b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/6/events?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T11:53:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/5/events?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":940424290,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940424290\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-29T01:08:31Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165369,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165369\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:17Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165370,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165370\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:17Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168783,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168783\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:11Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168785,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168785\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:11Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942273596,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942273596\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T23:36:59Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705185,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705185\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:39Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705292,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705292\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:43Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705294,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705294\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:43Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705350,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705350\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:46Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705480,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705480\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:51Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705482,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705482\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:51Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705483,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705483\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:51Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924129,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924129\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:42Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943924369,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924369\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:52Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924515,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924515\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:58Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943924696,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924696\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:05Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925056,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925056\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:19Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943925240,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925240\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:25Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925396,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925396\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:32Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925397,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925397\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:32Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925605,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925605\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:40Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925761,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925761\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:47Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925762,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925762\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:47Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925763,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925763\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:47Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925910,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925910\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:55Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943982749,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943982749\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:25:34Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944027470,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944027470\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:10:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944051895,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944051895\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:37:19Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944053958,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944053958\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944054078,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944054078\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944057774,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944057774\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:43:56Z\"},{\"id\":944058287,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058287\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:33Z\"},{\"id\":944058475,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058475\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:44Z\"},{\"id\":944058516,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058516\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:47Z\"},{\"id\":944096437,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096437\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:24Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096471,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096471\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:26Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096472,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096472\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:26Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096494,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096494\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:27Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944098595,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098595\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:28:53Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944158937,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944158937\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:26Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944158976,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944158976\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944158978,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944158978\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:29Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944159003,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159003\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:31Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944159246,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944159246\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T02:48:51Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944588686,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588686\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:21:55Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944588759,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588759\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:21:59Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944588760,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588760\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:21:59Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944588807,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944588807\",\"actor\":{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T11:22:03Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "53381", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 11:53:49 GMT", + "ETag": "\"fcf11d5197bc23307ef9d65bcc7ccd72\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "EB46:411B:8D992D0:B417218:5891CC4C", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4990", + "X-RateLimit-Reset": "1485952469", + "X-Served-By": "7efb7ae49588ef0269c6a1c1bd3721d9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/5/events?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_45_1_issue_set__subscription.json b/tests/integration/cassettes/test_github_test_45_1_issue_set__subscription.json new file mode 100644 index 0000000..4e019f1 --- /dev/null +++ b/tests/integration/cassettes/test_github_test_45_1_issue_set__subscription.json @@ -0,0 +1,288 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T01:31:36", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:36 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "84A2:4118:4FF6416:65B8EC5:58913A78", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4767", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T01:31:36", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:36 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "84A2:4118:4FF641F:65B8ED1:58913A78", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4766", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "075bb2f6b7031ca3c0e69edb17939fae", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:31:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:54Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:36 GMT", + "ETag": "\"06c06d8fe9f5379fcee615a09caabf67\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "84A2:4118:4FF642C:65B8EE0:58913A78", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4765", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "c6c65e5196703428e7641f7d1e9bc353", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:37 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "84A2:4118:4FF6438:65B8EEA:58913A78", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4764", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "cee4c0729c8e9147e7abcb45b9d69689", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:37", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":939721359,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939721359\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T18:43:28Z\",\"rename\":{\"from\":\"ttt\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":939756859,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939756859\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:09:41Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":939771281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:06Z\"},{\"id\":939771814,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771814\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:29Z\"},{\"id\":939779163,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779163\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939779164,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779164\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782069,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782069\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:30Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782356,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782356\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:42Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939783789,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939783789\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:28:47Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":940135385,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940135385\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-28T01:36:56Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":940424285,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940424285\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-29T01:08:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165354,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165354\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165355,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165355\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168769,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168769\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168770,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168770\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942273301,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942273301\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T23:36:40Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452463,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452463\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460331,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460331\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:13Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460337,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460337\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:14Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460420,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460420\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460421,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460421\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":943699772,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943699772\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:11Z\",\"rename\":{\"from\":\"This is a test\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":943700398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943700398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:38Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":943701386,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943701386\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:05:17Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705225,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705225\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705226,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705226\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705332,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705332\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:45Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705458,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705458\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705459,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705459\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924109,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924109\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:41Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943924339,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924339\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:51Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924484,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924484\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:57Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943924666,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924666\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:04Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925027,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925027\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:18Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943925192,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925192\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:23Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925366,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925366\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925367,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925367\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925565,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925565\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:38Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925722,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925722\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:45Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925723,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925723\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925724,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925724\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925887,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925887\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:53Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943969364,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943969364\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:14:10Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944014791,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944014791\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:57:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944016455,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944016455\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:59:30Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017680,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017680\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017787,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017787\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:40Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:25Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019472,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019472\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:29Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019518,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019518\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944051883,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944051883\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:37:19Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944053948,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944053948\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944054067,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944054067\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055863,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055863\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:41Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055998,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055998\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:48Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944056046,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944056046\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:49Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944057763,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944057763\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:43:55Z\"},{\"id\":944058281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:32Z\"},{\"id\":944058467,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058467\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:44Z\"},{\"id\":944058506,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058506\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:47Z\"},{\"id\":944096422,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096422\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:23Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096452,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096452\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:25Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096453,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096453\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:25Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096490,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096490\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:27Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096513,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096513\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096514,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096514\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:29Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096515,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096515\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:29Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096541,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096541\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:30Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944096556,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096556\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:31Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096573,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096573\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:32Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096590,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096590\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:34Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096626,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096626\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:36Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944096645,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096645\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:37Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096658,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096658\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:38Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096659,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096659\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:38Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096676,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096676\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:39Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096693,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096693\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:40Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096694,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096694\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:40Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096695,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096695\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:40Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096709,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096709\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:42Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944098584,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098584\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:28:52Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944098986,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098986\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:29:22Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944098998,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098998\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:29:23Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944099016,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944099016\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:29:24Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944099838,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944099838\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:22Z\"},{\"id\":944099865,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944099865\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:23Z\"},{\"id\":944100240,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944100240\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:52Z\"},{\"id\":944100276,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944100276\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:53Z\"}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "97944", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:37 GMT", + "ETag": "\"cbfa35e2d176bf10ea753976f3c06422\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "84A2:4118:4FF6441:65B8EFB:58913A79", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4763", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "7f48e2f7761567e923121f17538d7a6d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_45_2_issue_unset__subscription.json b/tests/integration/cassettes/test_github_test_45_2_issue_unset__subscription.json new file mode 100644 index 0000000..406f4ff --- /dev/null +++ b/tests/integration/cassettes/test_github_test_45_2_issue_unset__subscription.json @@ -0,0 +1,288 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T01:31:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:38 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A8BE:4116:26F7B66:3158404:58913A79", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4762", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T01:31:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:38 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A8BE:4116:26F7B6D:3158413:58913A7A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4761", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a6882e5cd2513376cb9481dbcd83f3a2", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:31:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:54Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:38 GMT", + "ETag": "\"06c06d8fe9f5379fcee615a09caabf67\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A8BE:4116:26F7B76:315841C:58913A7A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4760", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "b0ef53392caa42315c6206737946d931", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:38 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A8BE:4116:26F7B7E:3158426:58913A7A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4759", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "8a5c38021a5cd7cef7b8f49a296fee40", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:38", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":939721359,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939721359\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T18:43:28Z\",\"rename\":{\"from\":\"ttt\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":939756859,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939756859\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:09:41Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":939771281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:06Z\"},{\"id\":939771814,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771814\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:29Z\"},{\"id\":939779163,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779163\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939779164,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779164\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782069,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782069\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:30Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782356,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782356\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:42Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939783789,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939783789\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:28:47Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":940135385,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940135385\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-28T01:36:56Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":940424285,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940424285\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-29T01:08:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165354,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165354\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165355,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165355\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168769,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168769\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168770,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168770\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942273301,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942273301\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T23:36:40Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452463,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452463\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460331,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460331\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:13Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460337,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460337\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:14Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460420,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460420\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460421,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460421\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":943699772,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943699772\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:11Z\",\"rename\":{\"from\":\"This is a test\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":943700398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943700398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:38Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":943701386,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943701386\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:05:17Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705225,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705225\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705226,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705226\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705332,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705332\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:45Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705458,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705458\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705459,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705459\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924109,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924109\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:41Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943924339,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924339\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:51Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924484,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924484\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:57Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943924666,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924666\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:04Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925027,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925027\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:18Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943925192,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925192\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:23Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925366,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925366\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925367,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925367\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925565,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925565\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:38Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925722,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925722\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:45Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925723,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925723\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925724,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925724\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925887,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925887\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:53Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943969364,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943969364\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:14:10Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944014791,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944014791\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:57:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944016455,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944016455\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:59:30Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017680,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017680\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017787,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017787\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:40Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:25Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019472,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019472\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:29Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019518,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019518\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944051883,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944051883\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:37:19Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944053948,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944053948\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944054067,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944054067\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055863,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055863\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:41Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055998,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055998\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:48Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944056046,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944056046\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:49Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944057763,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944057763\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:43:55Z\"},{\"id\":944058281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:32Z\"},{\"id\":944058467,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058467\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:44Z\"},{\"id\":944058506,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058506\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:47Z\"},{\"id\":944096422,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096422\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:23Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096452,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096452\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:25Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096453,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096453\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:25Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096490,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096490\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:27Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096513,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096513\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096514,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096514\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:29Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096515,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096515\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:29Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096541,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096541\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:30Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944096556,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096556\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:31Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096573,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096573\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:32Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096590,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096590\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:34Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096626,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096626\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:36Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944096645,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096645\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:37Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096658,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096658\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:38Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096659,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096659\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:38Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096676,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096676\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:39Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096693,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096693\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:40Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096694,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096694\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:40Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096695,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096695\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:40Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096709,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096709\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:42Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944098584,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098584\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:28:52Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944098986,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098986\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:29:22Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944098998,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098998\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:29:23Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944099016,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944099016\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:29:24Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944099838,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944099838\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:22Z\"},{\"id\":944099865,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944099865\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:23Z\"},{\"id\":944100240,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944100240\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:52Z\"},{\"id\":944100276,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944100276\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:53Z\"}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "97944", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:38 GMT", + "ETag": "\"cbfa35e2d176bf10ea753976f3c06422\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "A8BE:4116:26F7B83:315842F:58913A7A", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4758", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "3e3b9690823fb031da84658eb58aa83b", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/cassettes/test_github_test_45_3_issue_toggle__subscription.json b/tests/integration/cassettes/test_github_test_45_3_issue_toggle__subscription.json new file mode 100644 index 0000000..d2102cf --- /dev/null +++ b/tests/integration/cassettes/test_github_test_45_3_issue_toggle__subscription.json @@ -0,0 +1,288 @@ +{ + "http_interactions": [ + { + "recorded_at": "2017-02-01T01:31:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/user" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"login\":\"<GITHUB_NAMESPACE>\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>\",\"html_url\":\"https://github.com/<GITHUB_NAMESPACE>\",\"followers_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/followers\",\"following_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/subscriptions\",\"organizations_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/orgs\",\"repos_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/repos\",\"events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/<GITHUB_NAMESPACE>/received_events\",\"type\":\"User\",\"site_admin\":false,\"name\":\"<GITHUB_NAMESPACE>\",\"company\":null,\"blog\":\"http://<GITHUB_NAMESPACE>.got.nothing.to/blog/\",\"location\":\"Paris\",\"email\":null,\"hireable\":true,\"bio\":\"I'm zmo on freenode.\\r\\n\\r\\n: :(){ :|:& };:\",\"public_repos\":92,\"public_gists\":21,\"followers\":56,\"following\":15,\"created_at\":\"2010-04-27T14:04:09Z\",\"updated_at\":\"2016-12-30T16:56:26Z\"}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "1159", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:39 GMT", + "ETag": "\"ffac4aba9f3c9ff00982fe30433832e9\"", + "Last-Modified": "Fri, 30 Dec 2016 16:56:26 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "84BA:4118:4FF64B0:65B8F8E:58913A7B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4757", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a7f8a126c9ed3f1c4715a34c0ddc7290", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/user" + } + }, + { + "recorded_at": "2017-02-01T01:31:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "{\"id\":79663368,\"name\":\"git-repo-test\",\"full_name\":\"git-services/git-repo-test\",\"owner\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/git-services/git-repo-test\",\"description\":null,\"fork\":false,\"url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"forks_url\":\"https://api.github.com/repos/git-services/git-repo-test/forks\",\"keys_url\":\"https://api.github.com/repos/git-services/git-repo-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/git-services/git-repo-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/git-services/git-repo-test/teams\",\"hooks_url\":\"https://api.github.com/repos/git-services/git-repo-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/events\",\"assignees_url\":\"https://api.github.com/repos/git-services/git-repo-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/git-services/git-repo-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/tags\",\"blobs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/git-services/git-repo-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/git-services/git-repo-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/git-services/git-repo-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/git-services/git-repo-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/git-services/git-repo-test/subscription\",\"commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/git-services/git-repo-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/git-services/git-repo-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/git-services/git-repo-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/git-services/git-repo-test/merges\",\"archive_url\":\"https://api.github.com/repos/git-services/git-repo-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/git-services/git-repo-test/downloads\",\"issues_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/git-services/git-repo-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/git-services/git-repo-test/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/git-services/git-repo-test/deployments\",\"created_at\":\"2017-01-21T18:11:05Z\",\"updated_at\":\"2017-01-21T18:11:05Z\",\"pushed_at\":\"2017-01-21T23:59:07Z\",\"git_url\":\"git://github.com/git-services/git-repo-test.git\",\"ssh_url\":\"git@github.com:git-services/git-repo-test.git\",\"clone_url\":\"https://github.com/git-services/git-repo-test.git\",\"svn_url\":\"https://github.com/git-services/git-repo-test\",\"homepage\":\"\",\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"open_issues_count\":7,\"forks\":1,\"open_issues\":7,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"git-services\",\"id\":25266016,\"avatar_url\":\"https://avatars.githubusercontent.com/u/25266016?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/git-services\",\"html_url\":\"https://github.com/git-services\",\"followers_url\":\"https://api.github.com/users/git-services/followers\",\"following_url\":\"https://api.github.com/users/git-services/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/git-services/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/git-services/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/git-services/subscriptions\",\"organizations_url\":\"https://api.github.com/users/git-services/orgs\",\"repos_url\":\"https://api.github.com/users/git-services/repos\",\"events_url\":\"https://api.github.com/users/git-services/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/git-services/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"network_count\":1,\"subscribers_count\":1}" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "6036", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:39 GMT", + "ETag": "\"dd70ecdfd52247a5eb43dcd788cd8238\"", + "Last-Modified": "Sat, 21 Jan 2017 18:11:05 GMT", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "84BA:4118:4FF64B7:65B8F99:58913A7B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4756", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "d594a23ec74671eba905bf91ef329026", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test" + } + }, + { + "recorded_at": "2017-02-01T01:31:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/7/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/issues/7\",\"id\":203653586,\"number\":7,\"title\":\"This is a test\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228924,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-27T14:49:52Z\",\"updated_at\":\"2017-02-01T01:30:54Z\",\"closed_at\":null,\"body_html\":\"<p>How successful is that test?</p>\",\"body_text\":\"How successful is that test?\",\"body\":\"How successful is that test?\"},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/6/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"id\":202348324,\"number\":6,\"title\":\"test pr #6\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:59:07Z\",\"updated_at\":\"2017-02-01T01:28:52Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/6\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/6\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/6.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/6.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/5/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"id\":202348289,\"number\":5,\"title\":\"test pr #5\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228922,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/bug\",\"name\":\"bug\",\"color\":\"ee0701\",\"default\":true},{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:58:19Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/5\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/5\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/5.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/5.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/4/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"id\":202347686,\"number\":4,\"title\":\"test pr #4\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:44:45Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/4\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/4\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/4.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/4.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/3/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"id\":202347414,\"number\":3,\"title\":\"test pr #3\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:38:47Z\",\"updated_at\":\"2017-02-01T01:28:53Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/3\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/3\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/3.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/3.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/2/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"id\":202345578,\"number\":2,\"title\":\"test pr #2\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T23:00:22Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/2\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/2\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/2.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/2.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null},{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1\",\"repository_url\":\"https://api.github.com/repos/git-services/git-repo-test\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/comments\",\"events_url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/1/events\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"id\":202345376,\"number\":1,\"title\":\"test pr #1\",\"user\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[{\"id\":523228926,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/invalid\",\"name\":\"invalid\",\"color\":\"e6e6e6\",\"default\":true},{\"id\":523228927,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/labels/question\",\"name\":\"question\",\"color\":\"cc317c\",\"default\":true}],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/milestone/1\",\"labels_url\":\"https://api.github.com/repos/git-services/git-repo-test/milestones/1/labels\",\"id\":2282464,\"number\":1,\"title\":\"pigs can fly\",\"description\":\"\ud83d\udc16\",\"creator\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"open_issues\":7,\"closed_issues\":0,\"state\":\"open\",\"created_at\":\"2017-01-27T15:14:53Z\",\"updated_at\":\"2017-02-01T01:30:53Z\",\"due_on\":\"2345-06-07T07:00:00Z\",\"closed_at\":null},\"comments\":0,\"created_at\":\"2017-01-21T22:56:10Z\",\"updated_at\":\"2017-02-01T01:28:54Z\",\"closed_at\":null,\"pull_request\":{\"url\":\"https://api.github.com/repos/git-services/git-repo-test/pulls/1\",\"html_url\":\"https://github.com/git-services/git-repo-test/pull/1\",\"diff_url\":\"https://github.com/git-services/git-repo-test/pull/1.diff\",\"patch_url\":\"https://github.com/git-services/git-repo-test/pull/1.patch\"},\"body_html\":null,\"body_text\":null,\"body\":null}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "24911", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:39 GMT", + "ETag": "\"06c06d8fe9f5379fcee615a09caabf67\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "84BA:4118:4FF64C0:65B8FA4:58913A7B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4755", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "49aa99f015c25437a7443c4d3a58cd17", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues?state=all&direction=desc&per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:39", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "2", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:39 GMT", + "ETag": "\"09263d95e5d1dabd7b1490e3971bf6d4\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "notifications, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "84BA:4118:4FF64C9:65B8FB3:58913A7B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-Poll-Interval": "60", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4754", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/notifications?per_page=100" + } + }, + { + "recorded_at": "2017-02-01T01:31:40", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": "application/vnd.github.v3.full+json", + "Accept-Charset": "utf-8", + "Accept-Encoding": "identity", + "Authorization": "token <PRIVATE_KEY_GITHUB>", + "Connection": "keep-alive", + "Content-Type": "application/json", + "User-Agent": "github3.py/0.9.5" + }, + "method": "GET", + "uri": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "[{\"id\":939721359,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939721359\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T18:43:28Z\",\"rename\":{\"from\":\"ttt\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":939756859,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939756859\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:09:41Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":939771281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:06Z\"},{\"id\":939771814,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939771814\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:20:29Z\"},{\"id\":939779163,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779163\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939779164,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939779164\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:25:26Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782069,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782069\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:30Z\",\"label\":{\"name\":\"duplicate\",\"color\":\"cccccc\"}},{\"id\":939782356,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939782356\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:27:42Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":939783789,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/939783789\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-27T19:28:47Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":940135385,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940135385\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-28T01:36:56Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":940424285,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/940424285\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-29T01:08:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165354,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165354\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":941165355,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941165355\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:22:16Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168769,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168769\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":941168770,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/941168770\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T11:25:10Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942273301,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942273301\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-30T23:36:40Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942452463,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942452463\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:11:29Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460331,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460331\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:13Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":942460337,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460337\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:14Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460420,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460420\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":942460421,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/942460421\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T03:24:23Z\",\"label\":{\"name\":\"enhancement\",\"color\":\"84b6eb\"}},{\"id\":943699772,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943699772\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:11Z\",\"rename\":{\"from\":\"This is a test\",\"to\":\"coin \ud83e\udd86\"}},{\"id\":943700398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943700398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"renamed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:04:38Z\",\"rename\":{\"from\":\"coin \ud83e\udd86\",\"to\":\"This is a test\"}},{\"id\":943701386,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943701386\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:05:17Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705225,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705225\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705226,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705226\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:41Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943705332,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705332\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:45Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705458,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705458\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943705459,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705459\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943705461,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943705461\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T20:07:50Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924109,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924109\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:41Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943924339,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924339\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:51Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943924484,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924484\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:37:57Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943924666,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943924666\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:04Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925027,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925027\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:18Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943925192,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925192\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:23Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925366,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925366\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925367,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925367\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:30Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925565,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925565\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:38Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925722,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925722\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:45Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":943925723,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925723\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":943925724,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925724\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:46Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":943925887,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943925887\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T22:38:53Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":943969364,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/943969364\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:14:10Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944014791,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944014791\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:57:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944016455,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944016455\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-01-31T23:59:30Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017680,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017680\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944017787,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944017787\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:00:40Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019398,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019398\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:25Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019472,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019472\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:29Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944019518,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944019518\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:02:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944051883,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944051883\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:37:19Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944053948,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944053948\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:35Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944054067,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944054067\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:39:43Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055863,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055863\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:41Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944055998,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944055998\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:48Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944056046,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944056046\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:41:49Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944057763,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944057763\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:43:55Z\"},{\"id\":944058281,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058281\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:32Z\"},{\"id\":944058467,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058467\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:44Z\"},{\"id\":944058506,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944058506\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T00:44:47Z\"},{\"id\":944096422,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096422\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:23Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096452,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096452\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:25Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096453,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096453\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:25Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096490,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096490\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:27Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096513,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096513\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:29Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096514,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096514\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:29Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096515,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096515\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:29Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096541,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096541\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:30Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944096556,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096556\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:31Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096573,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096573\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:32Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096590,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096590\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:34Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096626,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096626\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:36Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944096645,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096645\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:37Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096658,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096658\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:38Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096659,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096659\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:38Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096676,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096676\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:39Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096693,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096693\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:40Z\",\"label\":{\"name\":\"bug\",\"color\":\"ee0701\"}},{\"id\":944096694,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096694\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:40Z\",\"label\":{\"name\":\"invalid\",\"color\":\"e6e6e6\"}},{\"id\":944096695,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096695\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:40Z\",\"label\":{\"name\":\"question\",\"color\":\"cc317c\"}},{\"id\":944096709,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944096709\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"labeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:26:42Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944098584,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098584\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"unlabeled\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:28:52Z\",\"label\":{\"name\":\"help wanted\",\"color\":\"128A0C\"}},{\"id\":944098986,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098986\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:29:22Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944098998,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944098998\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"demilestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:29:23Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944099016,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944099016\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"milestoned\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:29:24Z\",\"milestone\":{\"title\":\"pigs can fly\"}},{\"id\":944099838,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944099838\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:22Z\"},{\"id\":944099865,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944099865\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:23Z\"},{\"id\":944100240,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944100240\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"closed\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:52Z\"},{\"id\":944100276,\"url\":\"https://api.github.com/repos/git-services/git-repo-test/issues/events/944100276\",\"actor\":{\"login\":\"test\",\"id\":254441,\"avatar_url\":\"https://avatars.githubusercontent.com/u/254441?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/test\",\"html_url\":\"https://github.com/test\",\"followers_url\":\"https://api.github.com/users/test/followers\",\"following_url\":\"https://api.github.com/users/test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/test/orgs\",\"repos_url\":\"https://api.github.com/users/test/repos\",\"events_url\":\"https://api.github.com/users/test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/test/received_events\",\"type\":\"User\",\"site_admin\":false},\"event\":\"reopened\",\"commit_id\":null,\"commit_url\":null,\"created_at\":\"2017-02-01T01:30:53Z\"}]" + }, + "headers": { + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Content-Length": "97944", + "Content-Security-Policy": "default-src 'none'", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 01 Feb 2017 01:31:40 GMT", + "ETag": "\"cbfa35e2d176bf10ea753976f3c06422\"", + "Server": "GitHub.com", + "Status": "200 OK", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "X-Accepted-OAuth-Scopes": "public_repo, repo", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "deny", + "X-GitHub-Media-Type": "github.v3; param=full; format=json", + "X-GitHub-Request-Id": "84BA:4118:4FF64CF:65B8FBC:58913A7B", + "X-OAuth-Scopes": "repo, delete_repo, gist", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4753", + "X-RateLimit-Reset": "1485914157", + "X-Served-By": "a474937f3b2fa272558fa6dc951018ad", + "X-XSS-Protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://api.github.com/repos/git-services/git-repo-test/issues/7/events?per_page=100" + } + } + ], + "recorded_with": "betamax/0.5.1" +} \ No newline at end of file diff --git a/tests/integration/test_github.py b/tests/integration/test_github.py index fc77067..5feb9c9 100644 --- a/tests/integration/test_github.py +++ b/tests/integration/test_github.py @@ -16,7 +16,7 @@ from tests.helpers import GitRepoTestCase from git_repo.services.service import github -from git_repo.exceptions import ResourceExistsError, ResourceNotFoundError, ResourceError +from git_repo.exceptions import ResourceExistsError, ResourceNotFoundError, ResourceError, ArgumentError class Test_Github(GitRepoTestCase): @@ -33,6 +33,7 @@ def get_service(self): return github.GithubService(c=dict()) def get_requests_session(self): + self.service.gh._session.HIJACKED=True return self.service.gh._session def test_00_fork(self): @@ -364,4 +365,336 @@ def test_34_list__long(self, caplog): ['F ', '92', '0', '0', '0', '1', '0', '0', 'Python', 'Mar 30 2016', 'git-repo-test/git-repo']] assert 'GET https://api.github.com/users/git-repo-test/repos' in caplog.text + def test_35_issue_label_list(self): + content = self.action_issue_label_list('guyzmo', 'git-repo') + assert content == [ + 'Name', + 'backlog', + 'blocking', + 'bug', + 'design', + 'duplicate', + 'enhancement', + 'help wanted', + 'in progress', + 'invalid', + 'question', + 'ready', + 'wontfix', + ] + + def test_36_issue_milestone_list(self): + content = self.action_issue_milestone_list('guyzmo', 'git-repo') + assert content == [ + 'Name', + '1.8', + '∞', + '2.0', + '1.9', + '1.10', + ] + + def test_37_issue_list(self): + content = self.action_issue_list('git-services', 'git-repo-test') + assert content == [ + (None, 'Id', 'Labels', 'Title', 'URL', ''), + (True, '7', 'bug,enhancement', 'This is a test', 'https://github.com/git-services/git-repo-test/issues/7', None), + (True, '6', '', 'test pr #6', 'https://github.com/git-services/git-repo-test/pull/6', {'diff_url': 'https://github.com/git-services/git-repo-test/pull/6.diff', 'html_url': 'https://github.com/git-services/git-repo-test/pull/6', 'patch_url': 'https://github.com/git-services/git-repo-test/pull/6.patch', 'url': 'https://api.github.com/repos/git-services/git-repo-test/pulls/6'}), + (True, '5', '', 'test pr #5', 'https://github.com/git-services/git-repo-test/pull/5', {'diff_url': 'https://github.com/git-services/git-repo-test/pull/5.diff', 'html_url': 'https://github.com/git-services/git-repo-test/pull/5', 'patch_url': 'https://github.com/git-services/git-repo-test/pull/5.patch', 'url': 'https://api.github.com/repos/git-services/git-repo-test/pulls/5'}), + (True, '4', '', 'test pr #4', 'https://github.com/git-services/git-repo-test/pull/4', {'diff_url': 'https://github.com/git-services/git-repo-test/pull/4.diff', 'html_url': 'https://github.com/git-services/git-repo-test/pull/4', 'patch_url': 'https://github.com/git-services/git-repo-test/pull/4.patch', 'url': 'https://api.github.com/repos/git-services/git-repo-test/pulls/4'}), + (True, '3', '', 'test pr #3', 'https://github.com/git-services/git-repo-test/pull/3', {'diff_url': 'https://github.com/git-services/git-repo-test/pull/3.diff', 'html_url': 'https://github.com/git-services/git-repo-test/pull/3', 'patch_url': 'https://github.com/git-services/git-repo-test/pull/3.patch', 'url': 'https://api.github.com/repos/git-services/git-repo-test/pulls/3'}), + (True, '2', '', 'test pr #2', 'https://github.com/git-services/git-repo-test/pull/2', {'diff_url': 'https://github.com/git-services/git-repo-test/pull/2.diff', 'html_url': 'https://github.com/git-services/git-repo-test/pull/2', 'patch_url': 'https://github.com/git-services/git-repo-test/pull/2.patch', 'url': 'https://api.github.com/repos/git-services/git-repo-test/pulls/2'}), + (True, '1', '', 'test pr #1', 'https://github.com/git-services/git-repo-test/pull/1', {'diff_url': 'https://github.com/git-services/git-repo-test/pull/1.diff', 'html_url': 'https://github.com/git-services/git-repo-test/pull/1', 'patch_url': 'https://github.com/git-services/git-repo-test/pull/1.patch', 'url': 'https://api.github.com/repos/git-services/git-repo-test/pulls/1'}) + ] + + def test_38_issue_grab(self): + content = self.action_issue_grab('git-services', 'git-repo-test', '7') + assert content == { + 'assignee': None, + 'body': 'How successful is that test?', + 'closed_at': None, + 'closed_by': 'guyzmo', + 'creation': '2017-01-27T14:49:52+00:00', + 'id': 7, + 'labels': ['bug', 'enhancement'], + 'milestone': None, + 'poster': 'guyzmo', + 'repository': 'git-services/git-repo-test', + 'state': 'open', + 'title': 'This is a test', + 'uri': 'https://github.com/git-services/git-repo-test/issues/7' + } + + def test_39_issue_edit(self): + def edit_cb(title, body): + assert title == 'coin πŸ¦†' + assert body == 'meuh β™₯πŸ‘\n\n' + return { + 'title': 'This is a test', + 'body': 'How successful is that test?' + } + assert self.action_issue_edit('git-services', 'git-repo-test', '7', edit_cb) + + '''Testing issue labels''' + + def test_40_1_issue_get__label_one(self): + content = self.action_issue_get( + 'git-services', 'git-repo-test', + 'labels', '', ['4']) + assert content == [ + 'Id\tValue', + '4\thelp wanted,invalid,question', + ] + + def test_40_1_issue_get__label_multiple(self): + content = self.action_issue_get( + 'git-services', 'git-repo-test', + 'labels', '', ['2', '3', '4']) + assert content == [ + 'Id\tValue', + '4\thelp wanted,invalid,question', + '3\thelp wanted,invalid,question', + '2\thelp wanted,invalid,question', + ] + + def test_40_1_issue_get__label_none(self): + content = self.action_issue_get( + 'git-services', 'git-repo-test', + 'labels', '', []) + assert content == [ + 'Id\tValue', + '7\tenhancement,question', + '6\tbug,help wanted,invalid,question', + '5\tbug,help wanted,invalid,question', + '4\thelp wanted,invalid,question', + '3\thelp wanted,invalid,question', + '2\thelp wanted,invalid,question', + '1\thelp wanted,invalid,question' + ] + + def test_40_1_issue_get__label_missing(self): + content = self.action_issue_get( + 'git-services', 'git-repo-test', + 'labels', '', ['42']) + assert content == ['Id\tValue'] + + def test_40_1_issue_set__label_single__one_issue(self): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'label', 'question', '', ['7']) + + def test_40_1_issue_set__label_single__two_issues(self): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'label', 'question', '', ['5', '6']) + + def test_40_1_issue_set__label_multiple__one_issue(self): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'label', 'question,bug', '', ['7']) + + def test_40_1_issue_set__label_multiple__two_issues(self): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'label', 'question,bug', '', ['5', '6']) + + def test_40_1_issue_set__label_not_exists(self): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'label', 'invalid', '', []) + + def test_40_1_issue_set__label_multiple_w_not_exists(self): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'label', 'bug,invalid,question', '', ['7']) + + def test_40_1_issue_set__label_with_spaces(self): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'label', 'help wanted', '', ['7']) + + def test_40_2_issue_unset__label_single(self): + assert self.action_issue_unset( + 'git-services', 'git-repo-test', + 'label', 'question', '', ['7']) + + def test_40_2_issue_unset__label_multiple(self): + assert self.action_issue_unset( + 'git-services', 'git-repo-test', + 'label', 'question,bug', '', ['7']) + + def test_40_2_issue_unset__label_not_exists(self): + assert self.action_issue_unset( + 'git-services', 'git-repo-test', + 'label', 'invalid', '', ['7']) + + def test_40_2_issue_unset__label_multiple_w_not_exists(self): + assert self.action_issue_unset( + 'git-services', 'git-repo-test', + 'label', 'bug,invalid,question', '', ['7']) + + def test_40_2_issue_unset__label_with_spaces(self): + assert self.action_issue_unset( + 'git-services', 'git-repo-test', + 'label', 'help wanted', '', ['7']) + + def test_40_3_issue_toggle__label_single(self): + assert self.action_issue_toggle( + 'git-services', 'git-repo-test', + 'label', 'question', '', ['7']) + + def test_40_3_issue_toggle__label_multiple(self): + assert self.action_issue_toggle( + 'git-services', 'git-repo-test', + 'label', 'question,bug', '', ['7']) + + def test_40_3_issue_toggle__label_not_exists(self): + assert self.action_issue_toggle( + 'git-services', 'git-repo-test', + 'label', 'invalid', '', ['7']) + + def test_40_3_issue_toggle__label_multiple_w_not_exists(self): + assert self.action_issue_toggle( + 'git-services', 'git-repo-test', + 'label', 'bug,invalid,question', '', ['7']) + + def test_40_3_issue_toggle__label_with_spaces(self): + assert self.action_issue_toggle( + 'git-services', 'git-repo-test', + 'label', 'help wanted', '', ['7']) + + def test_40_3_issue_toggle__label__filter(self): + assert self.action_issue_toggle( + 'git-services', 'git-repo-test', + 'label', 'help wanted', 'label:question', []) + + '''Testing issue milestones''' + + def test_41_issue_get__milestone(self): + assert self.action_issue_get( + 'git-services', 'git-repo-test', + 'milestone', '', ['4']) == ['Id\tValue', '4\tpigs can fly'] + + def test_41_issue_set__milestone(self): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'milestone', 'pigs can fly', '', ['7']) + + def test_41_issue_unset__milestone(self): + assert self.action_issue_unset( + 'git-services', 'git-repo-test', + 'milestone', None, '', ['7']) + + def test_41_issue_toggle__milestone(self): + assert self.action_issue_toggle( + 'git-services', 'git-repo-test', + 'milestone', 'pigs can fly', '', ['7']) + + def test_41_1_issue_set__milestone_not_exists(self): + with pytest.raises(ArgumentError): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'milestone', 'invalid', '', ['7']) + + def test_41_1_issue_unset__milestone_not_exists(self): + with pytest.raises(ArgumentError): + assert self.action_issue_unset( + 'git-services', 'git-repo-test', + 'milestone', 'invalid', '', ['7']) + + def test_41_3_issue_toggle__milestone_not_exists(self): + with pytest.raises(ArgumentError): + assert self.action_issue_toggle( + 'git-services', 'git-repo-test', + 'milestone', 'invalid', '', ['7']) + + '''Testing issue open''' + + def test_42_0_issue_get__open(self): + assert self.action_issue_get( + 'git-services', 'git-repo-test', + 'open', '', ['7']) == ['Id\tValue', '7\tTrue'] + + def test_42_1_issue_set__open(self): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'open', None, '', ['7']) + + def test_42_2_issue_unset__open(self): + assert self.action_issue_unset( + 'git-services', 'git-repo-test', + 'open', None, '', ['7']) + + def test_42_3_issue_toggle__open(self): + assert self.action_issue_toggle( + 'git-services', 'git-repo-test', + 'open', None, '', ['7']) + + '''testing set closed''' + + def test_43_0_issue_get__close(self): + assert self.action_issue_get( + 'git-services', 'git-repo-test', + 'close', '', ['7']) == ['Id\tValue', '7\tFalse'] + + def test_43_1_issue_set__close(self): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'close', None, '', ['7']) + + def test_43_2_issue_unset__close(self): + assert self.action_issue_unset( + 'git-services', 'git-repo-test', + 'close', None, '', ['7']) + + def test_43_3_issue_toggle__close(self): + assert self.action_issue_toggle( + 'git-services', 'git-repo-test', + 'close', None, '', ['7']) + + '''testing set read''' + + def test_44_0_issue_get__read(self): + assert self.action_issue_get( + 'git-services', 'git-repo-test', + 'read', '', ['7']) == ['Id\tValue', '7\tTrue'] + + def test_44_1_issue_set__read(self): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'read', None, '', ['7']) + + def test_44_2_issue_unset__read(self): + assert self.action_issue_unset( + 'git-services', 'git-repo-test', + 'read', None, '', ['7']) + + def test_44_3_issue_toggle__read(self): + assert self.action_issue_toggle( + 'git-services', 'git-repo-test', + 'read', None, '', ['7']) + + '''testing set subscription''' + + def test_45_0_issue_get__subscription(self): + assert self.action_issue_get( + 'git-services', 'git-repo-test', + 'subscription', '', ['5', '6', '7']) == [ + 'Id\tValue', '7\t?', '6\t?', '5\t?' + ] + + def test_45_1_issue_set__subscription(self): + assert self.action_issue_set( + 'git-services', 'git-repo-test', + 'subscription', None, '', ['7']) + + def test_45_2_issue_unset__subscription(self): + assert self.action_issue_unset( + 'git-services', 'git-repo-test', + 'subscription', None, '', ['7']) + + def test_45_3_issue_toggle__subscription(self): + assert self.action_issue_toggle( + 'git-services', 'git-repo-test', + 'subscription', None, '', ['7'])