Tag Archives: GroupDocs API SDK

How to Create a Simple Application Using the GroupDocs’ JavaScript SDK

In this article I’ll walk you thorough the process of creating a simple JavaScript application which shows files and directories from your GroupDocs account. Lets start by creating a package from the GroupDocs JavaScript SDK sources. You can skip this step and get the full SDK package from GitHub and a minimal SDK package.

Creating a Package

  1. You need Node.js installed on you computer. Read more about installation Node.js. When Node.js is on your computer you can start
Continue Reading
Posted in zArchive | Tagged , , , , , ,

How to Use the GetChanges Method from the Comparison Api to Return a List of Changes in a Document

This article explains how to use the GetChanges method from the ComparisonApi in the GroupDocs SDK.

Requirements

We already know how to install the Fatfree framework and prepare for creating the sample from a previous article. The sample that we create in this article is not much different from other… Continue Reading
Posted in zArchive | Tagged , , , , , , , , ,

How to Compare Files with GroupDocs PHP SDK

This article explains the basics of using PHP SDK classes and methods. In this article I’ll use the Comparison API and show how to compare two documents from a GroupDocs account. Find information about other methods in the Swagger explorer.

Requirements

We already know how to install the Fatfree framework and… Continue Reading
Posted in zArchive | Tagged , , , ,

How to Deploy .NET Project on the AppHarbor

This article explains the basics of using AppHarbor. In this article, I’ll use the .NET SDK Samples project to show how to deploy a .NET project on AppHarbor.

Requirements

  • .NET project
  • App account
  • GitHub

Preparing

First of all, we need a AppHarbor account. If you don’t have one yet, please create one. Registration on AppHarbor is similar to any other site: sign up from the AppHarbor home page by clicking the Sign up button. Ok now we have AppHarbor… Continue Reading
Posted in zArchive | Tagged , , ,

How to use rspec to test GroupDocs API – Part 2

In the first article, How to use rspec to test GroupDocs API. Part 1, we created first test for GroupDocs API. This article describes in details how tests works, what expectation and matchers are, and how to test an API with the PULL method.

Expectation and Matchers

So what are expectation and matchers? Lets look at a small example:
string ="GroupDocs"
string.should have(9).characters
string.should_not have(5).characters
  • Expectations are defined by should and the negative form should_not.
  • Matchers are defined
Continue Reading
Posted in zArchive | Tagged , , , ,

Comparison API sample Implementation with PHP SDK

This article explains the basics of using PHP SDK classes and methods. In this article I’ll use the Comparison API and show how to compare two documents from a GroupDocs account. Find information about others methods in the Swagger explorer.

Requirements

Initial Installations

  1. Learn how to install the Fatfree framework from
Continue Reading
Posted in zArchive | Tagged , , , , , , ,