Available SDKs
Leave feedback
On this page
Using an SDK (API client) is the quickest way for a developer to speed up the development. An SDK takes care of a lot of low-level details of making requests and handling responses and lets you focus on writing code specific to your particular project.
Our supported SDKs are 100% tested and out of the box running. These SDKs are open source and have an MIT license. You can use them, and even customize them for absolutely free of charge.
Allows you to incorporate GroupDocs.Viewer Cloud services in your .NET applications quickly and easily.
Install GroupDocs.Viewer-Cloud package via NuGet:
Install-Package GroupDocs.Viewer-Cloud
NoteComplete source code of GroupDocs.Viewer Cloud SDK for .Net is freely available on the GitHub.
NotePlease see the GroupDocs.Viewer Cloud SDK for .NET Examples here.
Allows you to incorporate GroupDocs.Viewer Cloud services in your PHP applications quickly and easily.
The groupdocs-viewer-cloud package is available on Packagist. Run the following command to install the package:
composer require groupdocscloud/groupdocs-viewer-cloud
To use the SDK, use Composer’s autoload:
require_once('vendor/autoload.php');
NoteComplete source code of GroupDocs.Viewer Cloud SDK for PHP is freely available on GitHub.
NotePlease see the GroupDocs.Viewer Cloud SDK for PHP Examples here.
Allows you to incorporate GroupDocs.Viewer Cloud services in your Java applications quickly and easily.
You can directly include the source code of GroupDocs.Viewer Cloud SDK for Java in your own project, the source code is available from here.
Alternatively, you can use Maven to include in your Java project. Below are the steps for Maven.
<repository>
<id>groupdocs-artifact-repository</id>
<name>GroupDocs Artifact Repository</name>
<url>https://releases.groupdocs.cloud/java/repo/</url>
</repository>
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-viewer-cloud</artifactId>
<version>18.7</version>
<scope>compile</scope>
</dependency>
mvn dependency:sources
mvn dependency:resolve -Dclassifier#javadoc
mvn eclipse:eclipse -DdownloadSources#true
mvn eclipse:eclipse -DdownloadSources#true -DdownloadJavadocs#false
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>false</downloadJavadocs>
</configuration>
</plugin>
</plugins>
</build>
NoteComplete source code of GroupDocs.Viewer Cloud SDK for Java is freely available on the GitHub.
NotePlease see the GroupDocs.Viewer Cloud SDK for Java Examples here.
Allows you to incorporate GroupDocs.Viewer Cloud services in your Ruby applications quickly and easily.
The groupdocs_viewer_cloud gem is available at RubyGem. Run the following command to install the gem:
gem install groupdocs_cloud_viewer
NoteComplete source code of GroupDocs.Viewer Cloud SDK for Ruby is freely available on the GitHub.
NotePlease see the GroupDocs.Viewer Cloud SDK for Ruby Examples here.
Allows you to incorporate GroupDocs.Viewer Cloud services in your Node.js applications quickly and easily.
The viewer-sdk-nodejs package is available at https://www.npmjs.com/. To install the package type the following:
npm install groupdocs-viewer-cloud
NoteComplete source code of GroupDocs.Viewer Cloud SDK for Node.js is freely available on the GitHub.
NotePlease see the GroupDocs.Viewer Cloud SDK for Node.js Examples here.
Allows you to incorporate GroupDocs.Viewer Cloud services in your Python applications quickly and easily.
Install groupdocs-viewer-cloud package with PIP from PyPI. Run the following command to install the package:
pip install groupdocs-viewer-cloud
NoteComplete source code of GroupDocs.Viewer Cloud SDK for Python is freely available on the GitHub
NotePlease see the GroupDocs.Viewer Cloud SDK for Python Examples here.
Allows you to incorporate GroupDocs.Viewer Cloud services in your Android applications quickly and easily.
You can directly include the source code of GroupDocs.Viewer Cloud SDK for Android in your own project, the source code is available from here.
Add Internet permission in the AndroidManifest.xml:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="<package name>">
<uses-permission android:name="android.permission.INTERNET" />
...
Add following repository and dependency to your android module’s build.gradle after “apply plugin: ‘com.android.application’” section:
repositories {
maven {
url "https://releases.groupdocs.cloud/java/repo/"
}
}
...
dependencies {
...
implementation 'com.groupdocs:groupdocs-viewer-cloud-android:20.5'
}
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.