rest api for cubicweb
Project description
Summary
This cube allows a client to forge signed HTTP resquests that are then recognized as valid by the CubicWeb web server, ie. the request is handled as an authenticated user. For example, it can be used to start an operation using an authenticated user.
It’s usually used alongside with cubicweb-rqlcontroller and cwclientlib.
This cube aims at make it easy to write REST-like APIs for CW.
Long story short: cubicweb-signedrequest allows you to make authenticated HTTP requests simply by addind a properly forged HTTP header in your request.
How to use signed HTTP requests in your CubicWeb app?
This cube aims at making it possible to use tokens to authenticate to a CubicWeb application. It provides a Token entity that have a unique token_id attribute and a generated (secret) token. This Token entity is related to a CWUser (using the token_for_user relation).
It’s the possible to make authenticated HTTP requests (authenticated as this CWUser) by adding a Authorization header to the HTTP request. This header is computed as a HMAC hash with:
the secret token as key,
the concatenation os method + url + all the signed headers.
By default, the method is the Cubicweb string, and the signed headers are ‘Content-MD5’, ‘Content-Type’ and ‘Date’.
The doc/sreq_example.py script is an simple python script showing how to forge such a HTTP GET request using urllib2.
Please read the documentation of cwclientlib for examples of how it can be used.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for cubicweb-signedrequest-0.4.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31fbb19f48dcbc8ad9f3fc12d6b9b3460b13f96141babbad996c28fbce7f8cb6 |
|
MD5 | 9b650612b321bb6864a538963b9441a7 |
|
BLAKE2b-256 | c0056413b393c17f7666f9c9db090c5bdeb5a6f3c2d286bbde1695269ff00e47 |