Sha256: 6bf8e5f8fe75669009878e9559d3ab0965e6fa6fc1bccef0259eac2eeef3cc69

Contents?: true

Size: 1.58 KB

Versions: 1

Compression:

Stored size: 1.58 KB

Contents

#GET request
get '/sample-12-how-to-list-all-annotations-from-document' do
  haml :sample12
end

#POST request
post '/sample-12-how-to-list-all-annotations-from-document' 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?

    #Prepare base path
    if settings.base_path.empty?
      base_path = 'https://api.groupdocs.com'
    elsif settings.base_path.match('/v2.0')
      base_path = settings.base_path.split('/v2.0')[0]
    else
      base_path = settings.base_path
    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 = base_path # default is 'https://api.groupdocs.com'
    end

    #Create document object
    document = GroupDocs::Storage::File.new(guid: settings.file_id)
    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-2.3.0 examples/api-samples/samples/sample12.rb