Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Get the photo bytes URL

    1. From a list of photos, access response[n].links.bytes

    2. From a person resource, access response.currentPhoto.links.bytes

  2. Request the binary photo data with the following request.

URI: https://api.onlinephotosubmission.com/{bytes link for photo}

example URI: https://api.onlinephotosubmission.com/api/photos/lotsOfRandomLettersAndNumbers/bytes
(see Get Photo List for instructions describing how to get a list of photos including their bytes links)

HTTP Method: GET

...

{Photo Bytes URL}
HTTP Method: GET

Example HTTP Request Body
title
Code Block
{EMPTY}

Example Response

Code Block
200 OK
Content-Type: image/jpeg;charset=utf-8

BODY: {BINARY JPEG CONTENT}

...