Embedded Map
Con esta opción puedes incrustar el mapa de seguimiento en tu app web o móvil.
Utilizamos el objeto iframe, para insertar el código de seguimiento
<iframe
title="Embedded Tracking Rapigo"
width="300"
height="200"
src="https://rapigo.netlify.com/?token=<token>?guia=<hash-guia>">
</iframe>
import Crypto
from Crypto.PublicKey import RSA
from Crypto.Cipher import PKCS1_OAEP
public_key = "<public_key>".decode('utf8')
guia = '<no-guia>'
guia = guia.encode()
cipher = PKCS1_OAEP.new(public_key)
encrypted_guia = cipher.encrypt(guia)
print(encrypted_guia)
Última actualización 3yr ago