Skip to content

Access your Event timelines and OAuth tokens through the API

Today we're announcing two new API features: Event Timeline access, and OAuth Authorizations. We've also tweaked the way mime types work in preparation for the finalization of API v3. ![](https://github-images.s3.amazonaws.com/blog/2011/tron.jpeg)…

Author

Today we’re announcing two new API features: Event Timeline access, and OAuth Authorizations. We’ve also tweaked the way mime types work in preparation for the finalization of API v3.


![](https://github-images.s3.amazonaws.com/blog/2011/tron.jpeg)

Event Timelines

You can now access the events that power the various activity streams on GitHub. You may notice some timelines that don’t actually exist on the site too. Some highlights include:

# get events for a repository
$ curl https://api.github.com/repos/github/github/events

# get events for a public network
$ curl https://api.github.com/networks/sinatra/sinatra/events

# get events that a user has received
# this shows events from public repos that a user is watching.
$ curl https://api.github.com/users/technoweenie/received_events/public

Check out the full Event timeline docs, as well as description of the payloads for every Event type. These payloads are what custom webhooks will receive, too.

OAuth Authorizations

One complaint we hear about API v3 is the lack of token support. People want to be able to setup scripts without the hassle of authorizing the app through the OAuth workflow. For this, we’ve added the OAuth Authorizations API. If you want to create a quick token with the repo scope:

$ curl -i -u "user:pass" 
  https://api.github.com/authorizations 
  -d '{"scopes":["repo"]}'

You can also add/remove scopes from authorizations, or delete them.

The OAuth docs have the specifics.

Mime Types

All resource mime types were simplified. Instead of sending a type like this to get HTML rendered comments:

application/vnd.github-pull.html+json

You can now just use this:

application/vnd.github.html+json

We also plan to make a few breaking changes in the next month before we move the API out of its beta state. If you’re using API v3, start specifying the ‘beta’ version so that you can have a graceful transition period at your own pace.

# for all API requests
Accept: application/vnd.github.v3+json

# when you want HTML comments:
Accept: application/vnd.github.v3.html+json

Example:

$ curl -H "Accept: application/vnd.github.beta.html+json" 
  https://api.github.com/repos/github/hubot/issues/123

Read more about the new mime types.

@mtodd wishes everyone a Happy Halloween!


![@mtodd wishes everyone a Happy Halloween](https://github-images.s3.amazonaws.com/blog/2011/animated-tubby.gif)

Explore more from GitHub

Product

Product

Updates on GitHub products and features, hot off the press.
GitHub Universe 2024

GitHub Universe 2024

Get tickets to the 10th anniversary of our global developer event on AI, DevEx, and security.
GitHub Copilot

GitHub Copilot

Don't fly solo. Try 30 days for free.
Work at GitHub!

Work at GitHub!

Check out our current job openings.