I have a Sharepoint site set up, with a site collection that contains a publishing site for news.
News pages are based on the Article page layout, so contains title, date, byline, description, image, image alt, rollup image etc.
I've been looking at retrieving this information using a REST feed e.g.
servername/sites/sitecollection/news/_vti_bin/ListData.svc/Pages
But this only returns title and date. I need all the other fields too.
What is the best way (if there is one!) to retrieve this information so that I can pull it in to an external php site?
This endpoint is supposed to support OData so you can do things like $select=field1,field2.... as you can see on that stack exchange post however SP 2013 brings support for REST and OAuth which helps a lot in this kind of scenarios