Diff for "API"

Not logged in - Log In / Register

Differences between revisions 9 and 22 (spanning 13 versions)
Revision 9 as of 2008-07-31 19:39:00
Size: 1446
Editor: cpe-24-193-113-134
Comment:
Revision 22 as of 2008-09-04 14:22:10
Size: 1764
Editor: cpe-24-193-113-134
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
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 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.
Line 12: Line 12:
   >>> print launchpad.users['sabdfl'].display_name
   Mark Shuttleworth
   >>> me = launchpad.me
   >>> me.display_name = 'My new display name'
   >>> me.lp_save()
Line 26: Line 27:
 * If you're writing your own interface to Launchpad, you'll need to know how [[http://oauth.net/| Oauth]] works. [[API/SigningRequests| 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.  * If you're writing your own interface to Launchpad, instead of using launchpadlib, you'll need to know how [[http://oauth.net/| OAuth]] works. [[API/SigningRequests| 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.
Line 28: Line 29:
 * Everyone will appreciate the reference documentation. (link forthcoming)  * Everyone can appreciate the [[http://edge.launchpad.net/+apidoc|reference documentation]].

 * When will the limited beta become an open beta? When will the open beta become a full release? The [[API/Roadmap| roadmap]] has the answers.

Launchpad web services API

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()
  • 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" }
  • 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)