How to use Credentials to securely sign requests to MapTiler Cloud API
This article describes how to sign requests to the MapTiler Cloud API with tokens. Using tokens is a much more secure way of authorizing requests to your MapTiler Cloud Account. Choose this method when the standard authorization method, API keys, is not sufficiently strong enough.
How do secure credentials work?
Each request is cryptographically signed when using the credentials, so using the same signature for a different request is impossible. This makes it impossible to steal the credentials during transmission and prevents any misuse of credentials.
How to use credentials
In MapTiler Cloud administration, under Account > Credentials, create new credentials and copy the token (keep this token private – treat it the same way as a password).
When using the credentials, every request to the MapTiler API has to contain key
and signature
query parameters.
How to calculate the signature
- The token from Cloud has two parts separated with an underscore:
key_secret
- Use “key” directly as
key
in the query - Calculate
signature
:- Decode “secret” (encoded as hexadecimal) to get the binary secret value
- Sign the whole URL (including “key”) using HMAC SHA256
- Add
&signature=
as the last query parameter (URL-safe Base64 encoded)
Python code
import base64, hashlib, hmac
def sign_url(input_url, token):
key, _, encoded_secret = token.partition("_")
# Add key to the URL to be signed
keyed_url = input_url + "?key=" + key
# Decode the secret into its binary format
# We need to decode the URL-encoded private key
decoded_secret = base64.b16decode(encoded_secret, casefold=True)
# Create a signature using the private key and the URL-encoded
# string using HMAC SHA256. This signature will be binary.
signature = hmac.new(decoded_secret, keyed_url.encode(), hashlib.sha256)
# Encode the binary signature into base64 for use within a URL
encoded_signature = base64.urlsafe_b64encode(signature.digest())
# Return signed URL
return keyed_url + "&signature=" + encoded_signature.decode()
Related guides
- Automatically created API key
- Check if MapLibre GL JS is supported
- Coordinates API
- Dataset upload - formats and limits
- Difference between 256x256, 512x512, and HiDPI/Retina rasterized tiles
- Disputed borders on your maps
- Exported Tiles Multiplier
- Generalization in maps
- How are the tile requests cached in web browser?
- How MapTiler map tiles are Generated and Delivered