Install
Works with Drupal: 7.xUsing Composer to manage Drupal site dependencies
Downloads
Download tar.gz
18.12 KB
MD5: b52a4bad46c8ff183ab595d2859de330
SHA-1: 4cad499aef279fd2297149cf367a1e338b812b7a
SHA-256: c9ec871d9e371942968a0a89ffecdc578e415bed13acf0900660d54e9f0badfd
Download zip
21.96 KB
MD5: 89b54736cbcaa718423d601c567e3572
SHA-1: 215be6b1328351932646ee948f83b555a78572cc
SHA-256: f02129eb010de34a74fcf9f89d52816984fdfb119f502610d12ad225b07df6a8
Release notes
Fixes a CSRF security issue. SA-CONTRIB-2012-162 - RESTful Web Services - Cross site request forgery (CSRF)
API change: The format extension in URL paths only works for GET requests now.
Example that still works:
GET http://example.com/node/123.json
Examples that do not work anymore:
POST http://example.com/node.json
PUT http://example.com/node/123.json
DELETE http://example.com/node/123.json
You have to set the content type header instead, example for JSON:
Content-Type: application/json