Diff for "API"

Not logged in - Log In / Register

Differences between revisions 30 and 31
Revision 30 as of 2010-04-07 20:24:07
Size: 2237
Editor: cpe-069-134-211-019
Comment:
Revision 31 as of 2010-04-09 16:32:30
Size: 2343
Editor: 78-105-1-164
Comment:
Deletions are marked like this. Additions are marked like this.
Line 16: Line 16:

 * There is also an unofficial .NET client library called [[https://launchpad.net/lpsharp|Launchpad#]]

Launchpad web services API

Note: This page discusses the Launchpad web service API from the perspective of developer wanting to use the API. If you want to help develop the API, see the Launchpad dev wiki instead. If you would like to find or share hints on being an end-user of a launchpadlib-based application, see /EndUserHints

The Launchpad website lets you learn about and manage bugs, projects, questions, and other artifacts of software development. These same objects are gradually being exposed through a web service, so that you can access them from scripts, applications, or other websites, in addition to accessing them through the Launchpad website. The service is designed around the principles of REST, with the goals of simplicity and transparency.

The Launchpad web service is currently in a limited beta, open to Launchpad's beta testers.

  • Most users will be happy with launchpadlib, the official Python client library for Launchpad's web service.

   >>> me = launchpad.me
   >>> me.display_name = 'My new display name'
   >>> me.lp_save()
  • There is also an unofficial .NET client library called Launchpad#

  • Users who aren't Python programmers, or who are interested in the inner workings of the web service, should read the hacking document.

   PATCH /beta/+me HTTP/1.1
   Host: api.edge.launchpad.net
   Content-type: application/json

   { "display_name" : "My new display name" }
  • See our directory of clients and code that uses the Launchpad APIs for examples. Also, we have a page of example code.

  • If you're writing your own interface to Launchpad, instead of using launchpadlib, you'll need to know how OAuth works. Signing Requests explains how to walk your end-users through the process of getting a set of OAuth credentials that you can use to make Launchpad web service requests on their behalf.

  • Everyone can appreciate the reference documentation.

  • When will the limited beta become an open beta? When will the open beta become a full release? The roadmap has the answers.

API (last edited 2023-07-06 08:24:58 by ines-almeida)