Skip to content

Wardrop/restful-sharepoint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Provides a convenient object model to the OData REST API of SharePoint 2013 and newer.

No unit tests as of yet.

Examples

require 'restful-sharepoint'
connection = RestfulSharePoint::Connection.new('http://sharepoint/mysite/', 'username', 'password')
list = RestfulSharePoint::List.from_title('My List', connection)
list_item = list.Items[0] # Dynamically invoke the deferred "Items" element
first_attachment = list_item.AttachmentFiles[0].content

list_item.values # Return the raw tree structure

About

Provides a convenient object model to the OData REST API of SharePoint 2013 and newer.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages