Rimuovere le restrizioni da un PDF
Azzerare tutte le restrizioni di autorizzazione di un PDF, ripristinando copia, stampa e modifica.
Rimuovere tutte le restrizioni di autorizzazione da un documento PDF, ripristinando la possibilità di copiare, stampare e modificare. L’API è stateless: il documento viene elaborato nella regione e non viene mai memorizzato.
Questa azione azzera i flag di autorizzazione, cioè le restrizioni su copia, stampa e modifica, e non la password richiesta per aprire il file. Per rimuovere quest’ultima, usare Rimuovere la password. Per il ciclo di vita completo, vedere Proteggere i documenti.
Endpoint
/v1/remove_restrictionsDisponibile in tutte le regioni. Vedere Regioni e residenza dei dati per il routing e la residenza dei dati.
| Regione | URL |
|---|---|
| Globale | https://api.pdfblocks.com/v1/remove_restrictions |
| Stati Uniti | https://us.api.pdfblocks.com/v1/remove_restrictions |
| HIPAA Stati Uniti | https://hipaa.api.pdfblocks.com/v1/remove_restrictions |
| Unione europea | https://eu.api.pdfblocks.com/v1/remove_restrictions |
| Regno Unito | https://uk.api.pdfblocks.com/v1/remove_restrictions |
| Canada | https://ca.api.pdfblocks.com/v1/remove_restrictions |
| Australia | https://au.api.pdfblocks.com/v1/remove_restrictions |
| Giappone | https://jp.api.pdfblocks.com/v1/remove_restrictions |
| India | https://in.api.pdfblocks.com/v1/remove_restrictions |
| Brasile | https://br.api.pdfblocks.com/v1/remove_restrictions |
Autenticazione
Autenticare ogni richiesta con la chiave API segreta nell’intestazione
X-API-Key, su HTTPS. Le chiavi si creano e si gestiscono dalla
dashboard. Vedere
Autenticazione per i dettagli.
Richiesta
L’endpoint accetta un corpo della richiesta multipart/form-data.
filefilerequiredIl documento PDF di input.
Esempi
Rimuovere da un PDF tutte le restrizioni di autorizzazione:
curl https://api.pdfblocks.com/v1/remove_restrictions \
-H 'X-API-Key: your_api_key' \
-F file=@input.pdf \
-o unrestricted.pdf# pip install requests
import requests
with open('input.pdf', 'rb') as file:
response = requests.post(
'https://api.pdfblocks.com/v1/remove_restrictions',
headers={'X-API-Key': 'your_api_key'},
files={'file': file},
)
response.raise_for_status()
with open('unrestricted.pdf', 'wb') as output:
output.write(response.content)// Node.js 18+
import { readFile, writeFile } from 'node:fs/promises';
const body = new FormData();
body.set('file', new Blob([await readFile('input.pdf')]), 'input.pdf');
const response = await fetch('https://api.pdfblocks.com/v1/remove_restrictions', {
method: 'POST',
headers: { 'X-API-Key': 'your_api_key' },
body,
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
await writeFile('unrestricted.pdf', Buffer.from(await response.arrayBuffer()));<?php
$ch = curl_init('https://api.pdfblocks.com/v1/remove_restrictions');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['X-API-Key: your_api_key'],
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => [
'file' => new CURLFile('input.pdf', 'application/pdf'),
],
]);
$pdf = curl_exec($ch);
if (curl_getinfo($ch, CURLINFO_HTTP_CODE) === 200) {
file_put_contents('unrestricted.pdf', $pdf);
}# gem install http
require 'http'
response = HTTP
.headers('X-API-Key' => 'your_api_key')
.post('https://api.pdfblocks.com/v1/remove_restrictions', form: {
file: HTTP::FormData::File.new('input.pdf'),
})
File.write('unrestricted.pdf', response.body) if response.status.success?package main
import (
"bytes"
"io"
"mime/multipart"
"net/http"
"os"
)
func main() {
var buf bytes.Buffer
form := multipart.NewWriter(&buf)
file, _ := os.Open("input.pdf")
defer file.Close()
part, _ := form.CreateFormFile("file", "input.pdf")
io.Copy(part, file)
form.Close()
req, _ := http.NewRequest("POST", "https://api.pdfblocks.com/v1/remove_restrictions", &buf)
req.Header.Set("Content-Type", form.FormDataContentType())
req.Header.Set("X-API-Key", "your_api_key")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
out, _ := os.Create("unrestricted.pdf")
defer out.Close()
io.Copy(out, res.Body)
}using var client = new HttpClient();
client.DefaultRequestHeaders.Add("X-API-Key", "your_api_key");
using var form = new MultipartFormDataContent
{
{ new ByteArrayContent(File.ReadAllBytes("input.pdf")), "file", "input.pdf" },
};
var response = await client.PostAsync(
"https://api.pdfblocks.com/v1/remove_restrictions", form);
response.EnsureSuccessStatusCode();
await File.WriteAllBytesAsync(
"unrestricted.pdf", await response.Content.ReadAsByteArrayAsync());Risposta
In caso di successo, la risposta è 200 OK e il corpo contiene il PDF senza
restrizioni:
HTTP/1.1 200 OK
Content-Type: application/pdf
Content-Length: 48213L’output è lo stesso documento con i flag di autorizzazione azzerati: le pagine e il contenuto sono invariati. Scrivere il corpo della risposta direttamente su un file, come fanno gli esempi qui sopra: non viene memorizzato nulla dalla nostra parte.
Errori
Le richieste non riuscite restituiscono un corpo application/problem+json. Il
più comune per questo endpoint è un 400, restituito quando file non è un PDF
leggibile. L’oggetto errors nomina ogni campo:
{
"type": "https://www.pdfblocks.com/docs/api/v1/error/400",
"title": "One or more validation errors occurred.",
"status": 400,
"errors": {
"file": ["Could not parse the PDF document. The file may be invalid or corrupt."]
}
}Una X-API-Key mancante o non valida restituisce un 401. Vedere
Errori per tutti i codici di stato e la forma completa della
risposta.