Perl API to protect local Microsoft Excel and OpenOffice Calc spreadsheet with password
Perl library to protect local Microsoft Excel and OpenOffice Calc spreadsheet with password
Protect local Microsoft Excel and OpenOffice Calc spreadsheet with password - Perl REST API
API Request:
POST
https://api.aspose.cloud/v3.0/cells/protect
Protecting a local spreadsheet with a password is a complex task. Protecting a local spreadsheet with password transitions is performed by our Perl SDK while maintaining the source spreadsheet's main structural and logical content. Our Perl library is a professional solution to protect local spreadsheets with a password online. This Cloud SDK gives Perl developers powerful functionality and perfect API.
Code example in Perl using REST API to encryption local spreadsheets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl/ | |
use strict; | |
use warnings; | |
use utf8; | |
use File::Slurp; | |
use MIME::Base64; | |
use AsposeCellsCloud::CellsApi; | |
my $config = AsposeCellsCloud::Configuration->new( client_id => $ENV{'ProductClientId'}, client_secret => $ENV{'ProductClientSecret'}); | |
my $instance = AsposeCellsCloud::CellsApi->new(AsposeCellsCloud::ApiClient->new( $config)); | |
my $assemblyTestXlsx = 'assemblytest.xlsx'; | |
my $dataSourceXlsx = 'datasource.xlsx'; | |
my $mapFiles = {}; | |
$mapFiles->{$assemblyTestXlsx}= "TestData/".$assemblyTestXlsx ; | |
$mapFiles->{$dataSourceXlsx}= "TestData/".$dataSourceXlsx ; | |
my $request = AsposeCellsCloud::Request::PostProtectRequest->new(); | |
$request->{file} = $mapFiles; | |
$request->{password} = '123456'; | |
my $result = $api->post_protect(request=> $request); | |
How to use Perl API to encrypt
- Create an account at Dashboard to get free API quota & authorization details
- Initialize CellsApi with Client Id, Client Secret, Base URL & API version
- Call post_protect method to get the resultant stream
System Requirements
- Perl 5