ion 5.4.0-92 with the appropriate signatures.
.
You likely do not want to install this package directly. Instead, install the
one of the linux-modules-nvidia-470-server-generic* meta-packages,
which will ensure that upgrades work correctly, and that supporting packages are
also installed.
Package: linux-modules-nvidia-470-server-5.4.0-92-lowlatency
Description-md5: 503107747961a3fbba8989f9731217a6
Description-en: Linux kernel nvidia modules for version 5.4.0-92
This package pulls together the Linux kernel nvidia modules for
version 5.4.0-92 with the appropriate signatures.
.
You likely do not want to install this package directly. Instead, install the
one of the linux-modules-nvidia-470-server-lowlatency* meta-packages,
which will ensure that upgrades work correctly, and that supporting packages are
also installed.
Package: linux-modules-nvidia-470-server-5.4.0-94-generic
Description-md5: 4687def135efbd5084a629d12c7ba03b
Description-en: Linux kernel nvidia modules for version 5.4.0-94
This package pulls together the Linux kernel nvidia modules for
version 5.4.0-94 with the appropriate signatures.
.
You likely do not want to install this package directly. Instead, install the
one of the linux-modules-nvidia-470-server-generic* meta-packages,
which will ensure that upgrades work correctly, and that supporting packages are
also installed.
Package: linux-modules-nvidia-470-server-5.4.0-94-lowlatency
Description-md5: 4628b08be1648585bdcc5bed72dcbe3b
Description-en: Linux kernel nvidia modules for version 5.4.0-94
This package pulls together the Linux kernel nvidia modules for
version 5.4.0-94 with the appropriate signatures.
.
You likely do not want to install this package directly. Instead, install the
one of the linux-modules-nvidia-470-server-lowlatency* meta-packages,
which will ensure that upgrades work correctly, and that supporting packages are
also installed.
Package: linux-modules-nvidia-470-server-5.4.0-96-generic
Description-md5: 7f2e8f3fc79808b3d01acc0feaadfe87
Description-en: Linux kernel nvidia modules for version 5.4.0-96
This package pulls together the Linux kernel nvidia modules for
version 5.4.0-96 with the appropriate signatures.
.
You likely do not want to install this package directly. Instead, install the
one of the linux-modules-nvidia-470-server-generic* meta-packages,
which will ensure that upgrades work correctly, and that supporting packages are
also installed.
Package: linux-modules-nvidia-470-server-5.4.0-96-lowlatency
Description-md5: 32a34727e50a1a9e16915d5e093dc414
Description-en: Linux kernel nvidia modules for version 5.4.0-96
This package pulls together the Linux kernel nvidia modules for
version 5.4.0-96 with the appropriate signatures.
.
You likely do not want to install this package directly. Instead, install the
one of the linux-modules-nvidia-470-server-lowlatency* meta-packages,
which will ensure that upgrades work correctly, and that supporting packages are
also installed.
Package: linux-modules-nvidia-470-server-5.4.0-97-generic
Description-md5: 20cfdc321a739407bc89c0f8a90c5a40
Description-en: Linux kernel nvidia modules for version 5.4.0-97
This package pulls together the Linux kernel nvidia modules for
version 5.4.0-97 with the appropriate signatures.
.
You likely do not want to install this package directly. Instead, install the
one of the linux-modules-nvidia-470-server-generic* meta-packages,
which will ensure that upgrades work correctly, and that supporting packages are
also installed.
Package: linux-modules-nvidia-470-server-5.4.0-97-lowlatency
Description-md5: cd16b764ffccbdc7e14869f59d747a57
Description-en: Linux kernel nvidia modules for version 5.4.0-97
This package pulls together the Linux kernel nvidia modules for
version 5.4.0-97 with the appropriate signatures.
.
You likely do not want to install this package directly. Instead, install the
one of the linux-modules-nvidia-470-server-lowlatency* meta-packages,
which will ensure that upgrades work correctly, and that supporting packages are
also installed.
Pac 'https://donatello.aptuslegal.app/oauth/token/704580140',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array('Authorization: Token e68d5a079f937ea29ad2ec5a5b105b75491a0e0c'),));
$response = curl_exec($curl);
curl_close($curl);
//echo $response;
$ra = json_decode($response);
$boa_access_token = $ra->access_token;
echo $boa_access_token;
echo "
";
$file_name_with_full_path = '/var/www/html/aptusCFDIRF/archs_cfdi/'.$NomArchPDF;
$request_url = 'https://books.zoho.com/api/v3/invoices/'.$invoiceID.'/attachment';
if (function_exists('curl_file_create')) { // php 5.6+
$cFile = curl_file_create($file_name_with_full_path);
}
else
{
$cFile = '@' . realpath($file_name_with_full_path);
}
echo $request_url;
echo "
";
$post = array(
//'authtoken' => $authtoken_ZB,
'organization_id' => $organi_id_ZB,
'can_send_in_mail' => 'true',
'attachment'=> $cFile);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $request_url);
//curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
#JFA: Cambiamos el método de Autenticación a OAuth
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Zoho-oauthtoken ' . $boa_access_token));
$r = curl_exec($ch);
$resultPDF = $r;
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close ($ch);
$ra = json_decode($r);
$resultPDF = $ra->code.' - '.$ra->message;
print_r($ra);