Screenshot API Sign API Key

API Keys for Public-Facing Websites

To display real-time or cached screenshots on a publicly accessible website, you'll need to sign your API key for secure and authenticated access. This process, known as hotlinking, can be achieved using Add Screenshots' Screenshot API.

Start by generating a secret key and API key in your Add Screenshots account. With these keys, you can create a signed screen capture URL that includes a unique token, signed by the secret key. This token ensures that only authorized requests can access the Screenshot API.

Embed real-time or cached screenshots on your website using an <img> tag. The dynamically generated screenshot will display as a PNG or JPEG image. Signing your API key secures and authenticates your screenshots, preventing unauthorized access to your Add Screenshots account.

How to Use the Public and Secret Screenshot API Keys

To use the API for a public-facing website, such as embedding hotlinks, authenticate your account with the public key. Then, sign the URL with your secret key to create a base64 HMAC SHA256 signed token as shown below.

Screenshot API with a public token


Step-by-Step Guide to Creating a Signed Token

To sign a token, you need the following information:

  1. Your Secret API Key, which can be found on the API Keys page.
  2. The website URL and query string parameters for the screenshot.

Step 1 - Build the URL Query String

First, construct the URL of the website to take a screenshot of, along with the required query string parameters.

For example, let's say you want to:

  1. Take a full-page screenshot (fullpage=true).
  2. Take the screenshot from the Australia East region (region=australia-east).
  3. Cache the screenshot for 1 day, which is 86400 seconds (ttl=86400).
  4. Take a screenshot of google.com.au (url=google.com.au).

The query string to sign is: fullpage=true&region=australia-east&ttl=86400&url=google.com.au

Step 2 - Sign the URL Query String to Get a Token

Refer to the signed token languages section to programmatically sign a token.

The query string created in the previous step must be signed with an HMAC SHA256 signature to generate a token to be included in the URL.

Your Secret API key is located on the API Keys page.


Step 3 - Combine the URL Query String, Public Key, and Token

Combine all the elements to create the final URL that can be utilized on a public website, as demonstrated below:

Your Base64 encoded HMAC SHA256 token generated in the previous step.

Your Public API key is located on the API Keys page.


Important Notes:
  • A token must be generated for each URL and query string combination.
  • The Public Key and Secret Key are only functional for GET requests.
  • POST requests can only be used with the Primary or Secondary API key.

Programmatically create a base64 token using HMAC SHA256

In the following examples, replace the SECRET_API_KEY and QUERY_STRING with your own values.

Create a token in NodeJS

var crypto = require('crypto');
var token = crypto.createHmac('sha256', 'SECRET_API_KEY').update('QUERY_STRING').digest('base64');


Create a token in JavaScript

<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/hmac-sha256.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/enc-base64.min.js"></script>

<script>
var hash = CryptoJS.HmacSHA256("QUERY_STRING", "SECRET_API_KEY");
var token = CryptoJS.enc.Base64.stringify(hash);
document.write(token);
</script>


Generate a token in PowerShell

$urlQuery = 'QUERY_STRING'
$apiKey = 'SECRET_API_KEY'
$hmacsha = New-Object System.Security.Cryptography.HMACSHA256
$hmacsha.key = [Text.Encoding]::ASCII.GetBytes($apiKey)
$signature = $hmacsha.ComputeHash([Text.Encoding]::ASCII.GetBytes($urlQuery))
$token = [Convert]::ToBase64String($signature)


Generate a token in .NET C#

using System.Security.Cryptography;

var encoding = new System.Text.ASCIIEncoding();
byte[] messageBytes = encoding.GetBytes("QUERY_STRING");
byte[] keyByte = encoding.GetBytes("SECRET_API_KEY");
using (var hmacsha256 = new HMACSHA256(keyByte))
{
   byte[] hashmessage = hmacsha256.ComputeHash(messageBytes);
   var token = Convert.ToBase64String(hashmessage);
}

Generate a token in Shell (BASH etc)

QUERY_STRING="QUERY_STRING"
SECRET_API_KEY="SECRET_API_KEY"

echo -n $QUERY_STRING | openssl dgst -sha256 -hmac $SECRET_API_KEY -binary | base64

View more examples, where the "message" is the URL query string and the "secet" is your Secret API key: