Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tags api #5

Open
deanshub opened this issue Mar 12, 2013 · 1 comment
Open

tags api #5

deanshub opened this issue Mar 12, 2013 · 1 comment
Assignees

Comments

@deanshub
Copy link
Owner

connecting to tags in the github and tags in the wiki chapters

@ghost ghost assigned arieljannai Mar 12, 2013
@arieljannai arieljannai mentioned this issue Mar 12, 2013
Closed
@arieljannai
Copy link
Collaborator

To get all the labels assigned to a specific issue, we will invoke this https get method (for issue number #9):
https://api.github.com/repos/deanshub/SocialCoding/issues/9/labels

as a result we will get something like this:

[
  {
    "url": "https://api.github.com/repos/deanshub/SocialCoding/labels/green",
    "name": "green",
    "color": "02e10c"
  },
  {
    "url": "https://api.github.com/repos/deanshub/SocialCoding/labels/invalid",
    "name": "invalid",
    "color": "e6e6e6"
  },
  {
    "url": "https://api.github.com/repos/deanshub/SocialCoding/labels/lalalala",
    "name": "lalalala",
    "color": "e10c02"
  }
]

and we can see the list of all the labels we've got there (green, invalid, lalalala).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants