Search
Follow Us
Categories
- News Release(3)
Tag Archives: GroupDocs API
Extract Emails using POP3 and IMAP Protocol – GroupDocs.Text for .NET 17.10
We are pleased to announce the release of version 17.10 of the GroupDocs.Text for .NET API. The latest release removes some obsolete methods from the API while provides some additional properties, updated parameters and improved performance of the API. The new feature added to the API in this release is the ability to extract text from the email server using POP3 and IMAP protocol. Just download the latest release or update your existing application to this release and enjoy… Continue Reading
Improved Performance introduced in GroupDocs.Comparison for .NET API v16.11.0
GroupDocs team is glad to announce another monthly release of GroupDocs.Comparison for .NET 16.11.0 API along with Improved Performance ,new features and fixes. Major changes are done for Presentation document format and introduced enhanced Support for advanced Visual Basic Scripts and detection of Picture Frames.In this monthly release 3 new feature are introduced along with 4 improvements and 3 Bug fixes. Download the latest GroupDocs.Comparison for .NET API to implement the new and improved features.
GroupDocs.Comparison for .NET 16.11.0 –
… Continue Reading Posted in GroupDocs.Comparison Product Family Tagged API, compare documents, Comparison, document comparison, GroupDocs, GroupDocs API, Improved, PDF, Performance, Spreadsheet, Words
SugarCRM Plugin Tutorial Using GroupDocs Viewer API
GroupDocs offers a full set of document management tools for SugarCRM: we’ve developed a bunch of plugins which help you use Viewer, Annotation, Assembly, Comparison and Signature apps in SugarCRM. This article gives some recommendations on how to create your own custom plugin for SugarCRM. We will use the GroupDocs Viewer plugin for SugarCRM as an example. SugarCRM is an open-platform web-based CRM solution which has an on-demand cloud platform. Today we show you how to create an on-site version… Continue Reading
Posted in zArchive Tagged GroupDocs API, GroupDocs plugin, SugarCRM plugin
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
- You need Node.js installed on you computer. Read more about installation Node.js. When Node.js is on your computer you can start
Posted in zArchive Tagged API, document collaboration, document management, GroupDocs API, GroupDocs API SDK, GroupDocs JavaScript SDK, javascript
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
- PHP 5.3
- Apache ModRewrite
- PHP Curl extension
- PHP Sockets extension (php_sockets.dll)
- GroupDocs PHP SDK
- composer.phar (Download from http://getcomposer.org/download/ or use the included version.)
- FatFree framework (https://github.com/bcosca/fatfree)
How to Use New Login Method in Plugins and Services
This article explains how to use the new method LoginUser, added to the new GroupDocs SDK.
Requirements
- PHP 5.3
- Apache ModRewrite
- PHP Curl extension
- PHP Sockets extension (php_sockets.dll)
- GroupDocs PHP SDK
- composer.phar (Download from http://getcomposer.org/download/ or use the included version.)
- FatFree framework (https://github.com/bcosca/fatfree)
Posted in zArchive Tagged API, document management, GroupDocs API, GroupDocs PHP SDK, GroupDocs Plugins, php api
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
- PHP 5.3
- Apache ModRewrite
- PHP Curl extension
- PHP Sockets extension (php_sockets.dll)
- GroupDocs PHP SDK
- composer.phar (Download from http://getcomposer.org/download/ or use the included version)
- FatFree framework (https://github.com/bcosca/fatfree)
Posted in zArchive Tagged API, document comparison, GroupDocs API, GroupDocs API SDK, GroupDocs Comparison
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
Posted in zArchive Tagged API, document management, GroupDocs API, GroupDocs API SDK, online document management system
How to Use GroupDocs PHP SDK with Composer or a Built-in Autoloader
GroupDocs supports all major platforms, such as .NET, PHP, Java, Python, etc. So with GropDocs’ SDKs you can easily create your own application to store, view, sign (and use a lot of other great features on) your documents online, using Windows or Linux with your favorite language. Today, I’ll talk about GroupDocs PHP SDK and how to get started with it. Sometimes, developers ask us how to get our PHP SDK, how to use it with Composer, or how to… Continue Reading
Posted in zArchive Tagged API, document management, GroupDocs API, online document management system
How to Use Swagger UI to Test GroupDocs REST API
The GroupDocs APIs are designed to be REST compliant so that they are familiar and easy to use. This post looks at how to use Swagger to test the GroupDocs APIs. Before showing you how to run a test, it explains Swagger and REST, and why we use them.