Guida alla firma digitale

Firma digitale della richiesta con una chiave API

A seconda dell'utilizzo, potrebbe essere necessaria una firma digitale, in aggiunta a una chiave API, per di autenticare le richieste. Consulta quanto segue: articoli:

Come funzionano le firme digitali

Le firme digitali vengono generate utilizzando un segreto di firma URL, disponibile in Google Cloud Console. Si tratta essenzialmente di una chiave privata, condivisa solo tra te e Google, ed è univoco per il tuo progetto.

Il processo di firma utilizza un algoritmo crittografico per combinare l'URL e secret condiviso. La firma unica risultante consente ai nostri server di verificare che qualsiasi sito che genera richieste utilizzando la tua chiave API sia autorizzato a farlo.

Limita le richieste non firmate

Per assicurarti che la chiave API accetti solo richieste firmate:

  1. Vai alla pagina Quote di Google Maps Platform nella console Cloud.
  2. Fai clic sul menu a discesa del progetto e seleziona lo stesso progetto che hai utilizzato quando lo hai creato la chiave API dell'applicazione o del sito.
  3. Seleziona l'API Maps Static o l'API Street View Static dall'elenco a discesa delle API.
  4. Espandi la sezione Richieste non firmate.
  5. Nella tabella Nome quota, fai clic sul pulsante di modifica accanto alla quota da modificare modifica. Ad esempio, Richieste non firmate al giorno.
  6. Aggiorna il limite di quota nel riquadro Modifica limite quota.
  7. Seleziona Salva.

Firmare le richieste

La firma delle richieste comprende i seguenti passaggi:

Passaggio 1: recupera il secret di firma dell'URL

Per ottenere il secret di firma dell'URL del progetto:

  1. Vai alla sezione Pagina delle credenziali di Google Maps Platform nella console Cloud.
  2. Seleziona il menu a discesa del progetto e seleziona lo stesso progetto che hai utilizzato quando hai creato la chiave API. per l'API Maps Static o l'API Street View Static.
  3. Scorri verso il basso fino alla scheda Generatore di segreti. Il campo Segreto corrente contiene il secret di firma dell'URL corrente.
  4. La pagina include anche il widget Firma subito un URL, che ti consente di accedere automaticamente. la richiesta all'API Maps Static o all'API Street View Static utilizzando il secret di firma corrente. Scorri verso il basso fino alla scheda Firma subito un URL per accedervi.

Per ricevere un nuovo secret di firma URL, seleziona Rigenera secret. Il secret precedente scadrà 24 ore dopo la generazione di un nuovo secret. Una volta trascorse 24 ore, le richieste contenenti il vecchio secret non funzioneranno più.

Passaggio 2: crea la richiesta non firmata

I caratteri non elencati nella seguente tabella devono essere codificati nell'URL:

Riepilogo dei caratteri di URL validi
ConfiguracaratteriUtilizzo dell'URL
Alfanumerico a b c d e f g h i j k l m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9 Stringhe di testo, utilizzo dello schema (http), porta (8080) e così via.
Non prenotato - _ ~ Stringhe di testo
Prenotato ! * ' ( ) : @ e = + $ , / ? % # [ ] Caratteri di controllo e/o stringhe di testo

Lo stesso vale per tutti i caratteri dell'insieme Prenotato, se vengono passati all'interno di un testo stringa. Per ulteriori informazioni, vedi Caratteri speciali.

Creare l'URL della richiesta non firmato senza la firma. Per istruzioni, consulta la seguente documentazione per gli sviluppatori:

Assicurati di includere anche la chiave API nel Parametro key. Ad esempio:

https://maps.googleapis.com/maps/api/staticmap?center=Z%C3%BCrich&size=400x400&key=YOUR_API_KEY

Generare la richiesta firmata

Per i casi d'uso una tantum, come l'hosting di una semplice Immagine dell'API Maps Static o dell'API Street View Static sul tuo pagina web o per risolvere eventuali problemi, puoi generare una firma digitale automaticamente utilizzando Widget Firma un URL ora.

Per le richieste generate dinamicamente, ti serve lato server il che richiede alcuni passaggi intermedi aggiuntivi

In ogni caso, dovresti ricevere un URL di richiesta con un parametro signature aggiunto alla fine. Ad esempio:

https://maps.googleapis.com/maps/api/staticmap?center=Z%C3%BCrich&size=400x400&key=YOUR_API_KEY
&signature=BASE64_SIGNATURE
Utilizzo del widget Firma subito un URL

Per generare una firma digitale con una chiave API utilizzando il widget Firma subito un URL. nella console Google Cloud:

  1. Individua il widget Sign a URL now (Firma un URL ora). come descritto nel Passaggio 1: recupera il secret di firma dell'URL.
  2. Nel campo URL, incolla l'URL della richiesta non firmato da Passaggio 2: crea la richiesta non firmata.
  3. Il campo Il tuo URL firmato visualizzato conterrà l'URL con firma digitale. Assicurati di crearne una copia.
Generazione di firme digitali lato server

Rispetto al widget Firma un URL ora, sono necessarie alcune azioni durante la generazione di firme digitali lato server:

  1. Rimuovi lo schema del protocollo e parti dell'URL relative all'host, lasciando solo il percorso e la query:

  2. /maps/api/staticmap?center=Z%C3%BCrich&size=400x400&key=YOUR_API_KEY
    
  3. Il secret di firma dell'URL visualizzato è codificato in un Base64 per gli URL.

    Poiché la maggior parte delle librerie crittografiche richiede che la chiave sia in formato byte non elaborati, devi decodificare il secret di accesso dell'URL nel formato originale non elaborato prima di firmare.

  4. Firma la richiesta di cui sopra con HMAC-SHA1.
  5. Poiché la maggior parte delle librerie crittografiche genera una firma in formato byte non elaborati, è necessario la firma binaria risultante utilizzando il modello Base64 per gli URL da convertire in qualcosa che può essere passato all'interno dell'URL.

  6. Aggiungi la firma con codifica Base64 all'URL della richiesta originale non firmata nella Parametro signature. Ad esempio:

    https://maps.googleapis.com/maps/api/staticmap?center=Z%C3%BCrich&size=400x400&key=YOUR_API_KEY
    &signature=BASE64_SIGNATURE

Per esempi che mostrano come implementare la firma dell'URL utilizzando il codice lato server, vedi Codice campione per la firma dell'URL di seguito.

Codice campione per la firma URL

Le sezioni seguenti mostrano come implementare la firma dell'URL utilizzando il codice lato server. Gli URL devono sempre essere firmati lato server per evitare di esporre il secret di firma URL agli utenti.

Python

L'esempio seguente utilizza librerie Python standard per firmare un URL. (Scarica del codice.

#!/usr/bin/python
# -*- coding: utf-8 -*-
""" Signs a URL using a URL signing secret """

import hashlib
import hmac
import base64
import urllib.parse as urlparse


def sign_url(input_url=None, secret=None):
    """ Sign a request URL with a URL signing secret.
      Usage:
      from urlsigner import sign_url
      signed_url = sign_url(input_url=my_url, secret=SECRET)
      Args:
      input_url - The URL to sign
      secret    - Your URL signing secret
      Returns:
      The signed request URL
  """

    if not input_url or not secret:
        raise Exception("Both input_url and secret are required")

    url = urlparse.urlparse(input_url)

    # We only need to sign the path+query part of the string
    url_to_sign = url.path + "?" + url.query

    # Decode the private key into its binary format
    # We need to decode the URL-encoded private key
    decoded_key = base64.urlsafe_b64decode(secret)

    # Create a signature using the private key and the URL-encoded
    # string using HMAC SHA1. This signature will be binary.
    signature = hmac.new(decoded_key, str.encode(url_to_sign), hashlib.sha1)

    # Encode the binary signature into base64 for use within a URL
    encoded_signature = base64.urlsafe_b64encode(signature.digest())

    original_url = url.scheme + "://" + url.netloc + url.path + "?" + url.query

    # Return signed URL
    return original_url + "&signature=" + encoded_signature.decode()


if __name__ == "__main__":
    input_url = input("URL to Sign: ")
    secret = input("URL signing secret: ")
    print("Signed URL: " + sign_url(input_url, secret))

Java

L'esempio seguente utilizza il corso java.util.Base64 disponibile a partire da JDK 1.8, nelle versioni precedenti potrebbe essere necessario utilizzare Apache Commons o simili. (Scarica del codice.

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URI;
import java.net.URISyntaxException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.util.Base64;  // JDK 1.8 only - older versions may need to use Apache Commons or similar.
import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;
import java.net.URL;
import java.io.BufferedReader;
import java.io.InputStreamReader;

public class UrlSigner {

  // Note: Generally, you should store your private key someplace safe
  // and read them into your code

  private static String keyString = "YOUR_PRIVATE_KEY";
  
  // The URL shown in these examples is a static URL which should already
  // be URL-encoded. In practice, you will likely have code
  // which assembles your URL from user or web service input
  // and plugs those values into its parameters.
  private static String urlString = "YOUR_URL_TO_SIGN";

  // This variable stores the binary key, which is computed from the string (Base64) key
  private static byte[] key;
  
  public static void main(String[] args) throws IOException,
    InvalidKeyException, NoSuchAlgorithmException, URISyntaxException {
    
    BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
    
    String inputUrl, inputKey = null;

    // For testing purposes, allow user input for the URL.
    // If no input is entered, use the static URL defined above.    
    System.out.println("Enter the URL (must be URL-encoded) to sign: ");
    inputUrl = input.readLine();
    if (inputUrl.equals("")) {
      inputUrl = urlString;
    }
    
    // Convert the string to a URL so we can parse it
    URL url = new URL(inputUrl);
 
    // For testing purposes, allow user input for the private key.
    // If no input is entered, use the static key defined above.   
    System.out.println("Enter the Private key to sign the URL: ");
    inputKey = input.readLine();
    if (inputKey.equals("")) {
      inputKey = keyString;
    }
    
    UrlSigner signer = new UrlSigner(inputKey);
    String request = signer.signRequest(url.getPath(),url.getQuery());
    
    System.out.println("Signed URL :" + url.getProtocol() + "://" + url.getHost() + request);
  }
  
  public UrlSigner(String keyString) throws IOException {
    // Convert the key from 'web safe' base 64 to binary
    keyString = keyString.replace('-', '+');
    keyString = keyString.replace('_', '/');
    System.out.println("Key: " + keyString);
    // Base64 is JDK 1.8 only - older versions may need to use Apache Commons or similar.
    this.key = Base64.getDecoder().decode(keyString);
  }

  public String signRequest(String path, String query) throws NoSuchAlgorithmException,
    InvalidKeyException, UnsupportedEncodingException, URISyntaxException {
    
    // Retrieve the proper URL components to sign
    String resource = path + '?' + query;
    
    // Get an HMAC-SHA1 signing key from the raw key bytes
    SecretKeySpec sha1Key = new SecretKeySpec(key, "HmacSHA1");

    // Get an HMAC-SHA1 Mac instance and initialize it with the HMAC-SHA1 key
    Mac mac = Mac.getInstance("HmacSHA1");
    mac.init(sha1Key);

    // compute the binary signature for the request
    byte[] sigBytes = mac.doFinal(resource.getBytes());

    // base 64 encode the binary signature
    // Base64 is JDK 1.8 only - older versions may need to use Apache Commons or similar.
    String signature = Base64.getEncoder().encodeToString(sigBytes);
    
    // convert the signature to 'web safe' base 64
    signature = signature.replace('+', '-');
    signature = signature.replace('/', '_');
    
    return resource + "&signature=" + signature;
  }
}

Node.js

L'esempio seguente utilizza moduli Node nativi per firmare un URL. (Scarica del codice.

'use strict'

const crypto = require('crypto');
const url = require('url');

/**
 * Convert from 'web safe' base64 to true base64.
 *
 * @param  {string} safeEncodedString The code you want to translate
 *                                    from a web safe form.
 * @return {string}
 */
function removeWebSafe(safeEncodedString) {
  return safeEncodedString.replace(/-/g, '+').replace(/_/g, '/');
}

/**
 * Convert from true base64 to 'web safe' base64
 *
 * @param  {string} encodedString The code you want to translate to a
 *                                web safe form.
 * @return {string}
 */
function makeWebSafe(encodedString) {
  return encodedString.replace(/\+/g, '-').replace(/\//g, '_');
}

/**
 * Takes a base64 code and decodes it.
 *
 * @param  {string} code The encoded data.
 * @return {string}
 */
function decodeBase64Hash(code) {
  // "new Buffer(...)" is deprecated. Use Buffer.from if it exists.
  return Buffer.from ? Buffer.from(code, 'base64') : new Buffer(code, 'base64');
}

/**
 * Takes a key and signs the data with it.
 *
 * @param  {string} key  Your unique secret key.
 * @param  {string} data The url to sign.
 * @return {string}
 */
function encodeBase64Hash(key, data) {
  return crypto.createHmac('sha1', key).update(data).digest('base64');
}

/**
 * Sign a URL using a secret key.
 *
 * @param  {string} path   The url you want to sign.
 * @param  {string} secret Your unique secret key.
 * @return {string}
 */
function sign(path, secret) {
  const uri = url.parse(path);
  const safeSecret = decodeBase64Hash(removeWebSafe(secret));
  const hashedSignature = makeWebSafe(encodeBase64Hash(safeSecret, uri.path));
  return url.format(uri) + '&signature=' + hashedSignature;
}

C#

L'esempio seguente utilizza il valore predefinito libreria System.Security.Cryptography per firmare una richiesta di URL. Tieni presente che dobbiamo convertire la codifica Base64 predefinita per implementare Versione sicura per URL. (Scarica del codice.

using System;
using System.Collections.Generic;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using System.Web;

namespace SignUrl {

  public struct GoogleSignedUrl {

    public static string Sign(string url, string keyString) {
      ASCIIEncoding encoding = new ASCIIEncoding();

      // converting key to bytes will throw an exception, need to replace '-' and '_' characters first.
      string usablePrivateKey = keyString.Replace("-", "+").Replace("_", "/");
      byte[] privateKeyBytes = Convert.FromBase64String(usablePrivateKey);

      Uri uri = new Uri(url);
      byte[] encodedPathAndQueryBytes = encoding.GetBytes(uri.LocalPath + uri.Query);

      // compute the hash
      HMACSHA1 algorithm = new HMACSHA1(privateKeyBytes);
      byte[] hash = algorithm.ComputeHash(encodedPathAndQueryBytes);

      // convert the bytes to string and make url-safe by replacing '+' and '/' characters
      string signature = Convert.ToBase64String(hash).Replace("+", "-").Replace("/", "_");
            
      // Add the signature to the existing URI.
      return uri.Scheme+"://"+uri.Host+uri.LocalPath + uri.Query +"&signature=" + signature;
    }
  }

  class Program {

    static void Main() {
    
      // Note: Generally, you should store your private key someplace safe
      // and read them into your code

      const string keyString = "YOUR_PRIVATE_KEY";
  
      // The URL shown in these examples is a static URL which should already
      // be URL-encoded. In practice, you will likely have code
      // which assembles your URL from user or web service input
      // and plugs those values into its parameters.
      const  string urlString = "YOUR_URL_TO_SIGN";
      
      string inputUrl = null;
      string inputKey = null;
    
      Console.WriteLine("Enter the URL (must be URL-encoded) to sign: ");
      inputUrl = Console.ReadLine();
      if (inputUrl.Length == 0) {
        inputUrl = urlString;
      }     
    
      Console.WriteLine("Enter the Private key to sign the URL: ");
      inputKey = Console.ReadLine();
      if (inputKey.Length == 0) {
        inputKey = keyString;
      }
      
      Console.WriteLine(GoogleSignedUrl.Sign(inputUrl,inputKey));
    }
  }
}

Esempi in lingue aggiuntive

Gli esempi che riguardano più lingue sono disponibili nella url-signing progetto.

Risoluzione dei problemi

Se la richiesta include una firma non valida, l'API restituisce un HTTP 403 (Forbidden) errore. Molto probabilmente questo errore si verifica se la firma utilizzata il secret non è collegato alla chiave API passata, o se l'input non ASCII non è codificato nell'URL prima della firma.

Per risolvere il problema, copia l'URL della richiesta ed elimina la query signature. e rigenera una firma valida seguendo le istruzioni riportate di seguito:

Per generare una firma digitale con una chiave API utilizzando il widget Firma subito un URL. nella console Google Cloud:

  1. Individua il widget Sign a URL now (Firma un URL ora). come descritto nel Passaggio 1: recupera il secret di firma dell'URL.
  2. Nel campo URL, incolla l'URL della richiesta non firmato da Passaggio 2: crea la richiesta non firmata.
  3. Il campo Il tuo URL firmato visualizzato conterrà l'URL con firma digitale. Assicurati di crearne una copia.