Integration with JavaScript File Selector
Most of our integrations use our fileselector, it’s a quick and easy way to browse the folders and files from Mediaflow and has a built in cropper so you can easily crop the images to the correct size or pick a download preset and where it should be applied in the image.
Before you begin you need a client_id, client_secret and refresh_token to be able to authenticate. The keys are supplied by us on request.
To begin with you need to include the fileselector javascript and css files. This can be linked from our server or just download it and use a local version. It can however be better to link to our server version since this will make sure you always have the latest version with bug fixes etc.
When the files are linked you can instantiate a new fileselector by doing the the following:
This will give you a basic fileselector where you can browse folders and pick a file. When the file is selected you will get the information about the image or video in the success callback.
To see more available options in the fileselector, please visit the article File Selector Integration Kit
Video
If you have picked a video this will give you an embed code to the video which uses our player. This can either be a Javascript embed code or an iframe, depending on the settings in the fileselector or in the selection made by the user. You can save this embed code to be able to show it on a page.
Image
If you have picked an image you will get a download url for the image. Use this to download the image and place it on your own server. You should also save the id of the file since it can be used to communicate updates back to our API. You can also obtain metadata like alt-texts and photographer.
Report usage
When you have saved all the information you can report back to our API which page the image or video is used on. This information is then available in Mediaflow so you can see everywhere the file is used. You can also report back when a file is not used any more. See more on how to do this in the “Report usage” section just below.
Report usage
Authentication
Before you''ll be able to report usage you must first obtain an access token from the API, see Authentication.
Send usage
With the access_token that we now got we can send requests to the api with the access_token as a Authorization header.
Authorization: Bearer igfragagsnckagnkgadciangdsnjg”
To this endpoint with the data described below:
POST https://api.mediaflow.com/1/files/multiple/usages
Usage Object
id
int array
Array of File ID’s
contact
string
Person responsible
date
string
Publication date
amount
string
Amount
description
string
information about the usage
project
string
Name of the project it’s used in
types
string array
Type of publication
removed
string
Indicates if the usage should be removed or not.
web
object
This is an object with details about the page the file is used on. More details are specified below.
Web object
page
string
Url to the page
pageName
string
Name of the page
JSON example:
Last updated