xrow / xrowodata-ls
OData REST Interface for eZ Publish
Installs: 188
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 12
Forks: 2
Open Issues: 0
Type:ezpublish-legacy-extension
Requires
This package is auto-updated.
Last update: 2024-11-16 03:17:10 UTC
README
Installation Active the extension. Useage The service will be available over the common REST API of eZ Publish (https://www.exmaple.com/api/odata/v1/ezpublish.svc/) Protocol Implementations The OData Protocol is implemented as specified in http://www.odata.org/media/30002/OData.html. The functoinality is depending on the features set of the OData Producer fpr PHP Project. Concrete Examples: /folder /folder(NodeID=2) /folder(NodeID=2)?$skip=10 /folder(NodeID=2)?$skip=100&$top=100 /folder(NodeID=2)?$skip=10&$orderby=content_published asc /folder(NodeID=2)?$skip=10&$orderby=content_published desc /folder(NodeID=2)?$skip=10&$orderby=content_published%20desc&$format=json /frontpage(NodeID=148720)/RefSetnews?$top=10&$skip=0&$orderby=content_published desc /frontpage(NodeID=148720)/RefSetnews?$top=10&$skip=10&$orderby=content_published desc /frontpage(NodeID=148720)/RefSetnews?$top=10&$skip=20&$orderby=content_published desc Possible "order by" Paramenter - content_published - content_modified - content_state - section - priority - path - owner - name - class_name - class_identifier - depth Abstact Example: /[ContentClass](NodeID=[ID of Node])?$skip=[number]&$top=[number max 100]&$orderby=[number max 100 desc|asc] How to view your data: Use http://metasapiens.com/sesame/data-browser/preview/ or use a client SDK to access the data. You find an php example in extension/xrowodata/bin/test.php