VOOZH about

URL: https://www.nuget.org/packages/GroupDocs.Viewer.UI.Api.Cloud.Storage

⇱ NuGet Gallery | GroupDocs.Viewer.UI.Api.Cloud.Storage 26.4.0




👁 Image
GroupDocs.Viewer.UI.Api.Cloud.Storage 26.4.0

Prefix Reserved
dotnet add package GroupDocs.Viewer.UI.Api.Cloud.Storage --version 26.4.0
 
 
NuGet\Install-Package GroupDocs.Viewer.UI.Api.Cloud.Storage -Version 26.4.0
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GroupDocs.Viewer.UI.Api.Cloud.Storage" Version="26.4.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GroupDocs.Viewer.UI.Api.Cloud.Storage" Version="26.4.0" />
 
Directory.Packages.props
<PackageReference Include="GroupDocs.Viewer.UI.Api.Cloud.Storage" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add GroupDocs.Viewer.UI.Api.Cloud.Storage --version 26.4.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: GroupDocs.Viewer.UI.Api.Cloud.Storage, 26.4.0"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package GroupDocs.Viewer.UI.Api.Cloud.Storage@26.4.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=GroupDocs.Viewer.UI.Api.Cloud.Storage&version=26.4.0
 
Install as a Cake Addin
#tool nuget:?package=GroupDocs.Viewer.UI.Api.Cloud.Storage&version=26.4.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

GroupDocs.Viewer.UI.Api.Cloud.Storage

GroupDocs.Viewer.UI.Api.Cloud.Storage is a cloud storage implementation that can be used with GroupDocs.Viewer.UI.Api. It provides seamless integration with GroupDocs.Cloud Storage for storing and retrieving documents in your GroupDocs.Viewer.UI application.

This storage implementation is primarily designed to work with GroupDocs.Viewer.UI.Cloud.Api, but it can also be used with GroupDocs.Viewer.UI.SelfHost.Api if you need to store files in GroupDocs.Cloud Storage.

Installation

To use Cloud Storage in your ASP.NET Core project:

  1. Add the required package to your project:
dotnet add package GroupDocs.Viewer.UI.Api.Cloud.Storage
  1. Configure Cloud Storage in your Startup class:
var builder = WebApplication.CreateBuilder(args);

builder.Services
 .AddGroupDocsViewerUI();

builder.Services
 .AddControllers()
 .AddGroupDocsViewerSelfHostApi()
 .AddCloudStorage(config =>
 {
 config.SetApiEndpoint("https://api.groupdocs.cloud/v2.0/");
 config.SetClientId("your-client-id");
 config.SetClientSecret("your-client-secret");
 config.SetStorageName("your-storage-name"); // Optional, uses default storage if not set
 });

var app = builder.Build();

app
 .UseRouting()
 .UseEndpoints(endpoints =>
 {
 endpoints.MapGroupDocsViewerUI(options =>
 {
 options.UIPath = "/viewer";
 options.ApiEndpoint = "/viewer-api";
 });
 endpoints.MapGroupDocsViewerApi(options =>
 {
 options.ApiPath = "/viewer-api";
 });
 });

await app.RunAsync();

Configuration Options

The Cloud Storage implementation supports the following configuration options:

  • ApiEndpoint (Required): The GroupDocs Cloud API endpoint (default: "https://api.groupdocs.cloud/v2.0/").
  • ClientId (Required): Your GroupDocs Cloud client ID, obtained from GroupDocs Cloud Dashboard.
  • ClientSecret (Required): Your GroupDocs Cloud client secret, obtained from GroupDocs Cloud Dashboard.
  • StorageName (Optional): The name of your storage in GroupDocs Cloud. If not set, the default storage will be used.

Getting Credentials

To obtain your client ID and client secret:

  1. Go to GroupDocs Cloud Dashboard
  2. Create a new application or select an existing one
  3. Copy the client ID and client secret from the application details

License

This project is licensed under the MIT License - see the file for details.

Product Versions Compatible and additional computed target framework versions.
.NET net6.0 net6.0 is compatible.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
26.4.0 119 4/29/2026
26.3.0 135 3/4/2026
8.1.5 128 2/19/2026
8.1.4 130 2/13/2026
8.1.3 130 2/11/2026
8.1.2 439 11/17/2025
8.1.1 328 9/21/2025
8.0.7 295 5/23/2025
8.0.6 329 5/5/2025
8.0.5 313 4/23/2025
8.0.4 331 4/22/2025
8.0.3 317 4/4/2025
8.0.2 308 2/6/2025
8.0.1 297 12/20/2024
8.0.0 282 12/16/2024
6.0.5 287 9/30/2024
6.0.4 311 6/11/2024
6.0.3 1,231 6/29/2023
6.0.2 1,196 6/29/2023
6.0.1 1,653 7/27/2022
Loading failed