Sha256: 50425878dfeaeeba84d96efd11243484aee5ddacb2b2bb4df719a8326c5af73b
Contents?: true
Size: 1.53 KB
Versions: 1
Compression:
Stored size: 1.53 KB
Contents
# GET request get '/sample12' do haml :sample12 end # POST request post '/sample12' do # Set variables set :client_id, params[:clientId] set :private_key, params[:privateKey] set :file_id, params[:fileId] set :base_path, params[:basePath] begin # Check required variables raise 'Please enter all required parameters' if settings.client_id.empty? or settings.private_key.empty? or settings.file_id.empty? if settings.base_path.empty? then settings.base_path = 'https://api.groupdocs.com' end # Configure your access to API server GroupDocs.configure do |groupdocs| groupdocs.client_id = settings.client_id groupdocs.private_key = settings.private_key # Optionally specify API server and version groupdocs.api_server = settings.base_path # default is 'https://api.groupdocs.com' end # Make a request to API using client_id and private_key files_list = GroupDocs::Storage::Folder.list!('/', {}) document = '' # Get document by file ID files_list.each do |element| if element.respond_to?('guid') == true and element.guid == settings.file_id document = element end end unless document.instance_of? String # Get list of annotations annotations = document.to_document.annotations!() end rescue Exception => e err = e.message end # Set variables for template haml :sample12, :locals => {:clientId => settings.client_id, :privateKey => settings.private_key, :annotations => annotations, :fileId => settings.file_id, :err => err} end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
groupdocs-1.5.8 | examples/api-samples/samples/sample12.rb |