How to handle invalid image query strings

On this page

You can choose how Sirv treats any image URLs with an invalid query string. If an image is requested with a string that does not match one of Sirv's 110 dynamic imaging options, you can decide whether to return an error or ignore the invalid string.

Return invalid queries as 400 error

By default, if the query string of an image URL is not entirely valid, Sirv will return a 400 error. The error will display a helpful JSON message, describing why the string was invalid.

For example, the following image URL has a query string of ?ww=600 which is incorrect. It was probably intended to be ?w=600 which would scale the width to 600px:

https://demo.sirv.com/example.jpg?ww=600

The body of the error response will look like this:

{
  "name": "ApiDataValidationError",
  "message": "Supplied data is not valid",
  "validationErrors": [
    {
      "code": "OBJECT_ADDITIONAL_PROPERTIES",
      "message": "Additional properties not allowed",
      "path": "#/",
      "params": {
        "properties": [
          "ww"
        ]
      }
    }
  ]
}

Return invalid queries as image

Instead of returning a 400 error, you can return the image as an image. Sirv will ignore the invalid parameters and apply the valid parameters.

For example, the following image URL string has one valid and one invalid parameter:

https://demo-query.sirv.com/example.jpg?ww=600&text.text=Hello

That image belongs to a Sirv account configured to ignore invalid parameters, so the invalid ww parameter is skipped and the valid text.text parameter is applied. Notice how the image is returned at full size because there are no valid scaling parameters in the URL.

Pros and cons of each method

When deciding which method to use, consider these differences:

Return an error Return an image
No User will not see an image Yes User will see an image (probably not the intended one)
Yes Developer will see cause of error No Developer should investigate cause of error themselves
Yes Errors shown in Sirv analytics, so you can fix them No Errors not shown in Sirv analytics, so you won't know if they exist

Causes of invalid queries

The common causes of invalid queries are:

  • Bad encoding - backend systems, CMS platforms, scripts, email and other systems might unnecessarily encode characters. For example, they might incorrectly convert & into & breaking the URL: example.
  • Human error - it's natural to make mistakes when you're coding and a developer could mistype the query and cause an error. Such an error would normally be caught by testing the code before going live.

Fix your invalid query strings

The best solution is to serve images with valid query strings.

We recommend regularly checking your account's error 400 analytics - they will reveal the top 50 images that returned a 400 error. Click each one to see a list of referring URLs showing where each request is coming from (assuming your page/server has a suitable referrer policy). Once you know where the requests are originating from, you can fix them.

If the 400 errors are caused by a bot, you can probably ignore them. Your files are open to the world to see, so it's natural that some bots/scripts/spiders might request files/strings that do not exist. But if you see a lot of 400 requests for a particular image, then you should investigate whether it is coming from a genuine referrer that needs to be fixed.

How to disable 400 errors

If you'd like to return the image instead of an error, that's easy. You can either set that option in your Default profile or configure a custom profile so that it is applied only to the images referencing that profile.

1. Go to the Profiles page of your Sirv account.

2. Click the "Edit" button next to the profile you wish to change.

3. In the "Delivery settings" section, change "Ignore invalid parameters" to "Enabled".

Ignore invalid image parameters in query string

4. Click "Save".

If you don't see the option in your Sirv account, please ask the Sirv support team to configure it for you.

Was this article helpful?

Get help from a Sirv expert

help ukraine help ukraine Powered by Ukrainian determination and British ingenuity

How can you support Ukraine