206
Comment:
|
1469
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
#acl AdminGroup:read,write All:read |
|
Line 3: | Line 5: |
This is a stub page for information on the Launchpad web services API. See also the information on [:API/launchpadlib: launchpadlib], our official Python client library. | 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 web service is currently in a limited beta, open to Launchpad's beta testers. * Most users will be happy with [[API/launchpadlib| launchpadlib]], the official Python client library for Launchpad's web service. {{{ >>> print launchpad.users['sabdfl'].display_name Mark Shuttleworth }}} * Users who aren't Python programmers, or who are interested in the inner workings of the web service, should read [[API/Hacking| the hacking document]]. {{{ PATCH /beta/+me HTTP/1.1 Host: api.edge.launchpad.net Content-type: application/json { "display_name" : "My new display name" } }}} {{{ 200 OK }}} * 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. * Everyone will appreciate the reference documentation. (link forthcoming) |
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 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.
>>> print launchpad.users['sabdfl'].display_name Mark Shuttleworth
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" }
200 OK
If you're writing your own interface to Launchpad, 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 will appreciate the reference documentation. (link forthcoming)