Skip to content

skybrud/Skybrud.VideoPicker.Skyfish

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Skybrud.VideoPicker.Skyfish

Skyfish add-on for our Skybrud.VideoPicker package for Umbraco 8.

Installation

  1. NuGet Package
    Install this NuGet package in your Visual Studio project. Makes updating easy.

  2. ZIP file
    Grab a ZIP file of the latest release; unzip and move the contents to the root directory of your web application.

Configuration

Access to the Skyfish API requires a public key, secret key, username and a password. The Skyfish provider from this package can be configured as following:

<?xml version="1.0" encoding="utf-8" ?>
<settings>
	<providers>
		<skyfish>
			<credentials 
				id="00000000-0000-0000-0000-000000000000"
				name="My Skyfish credentials"
				apiKey="secret api key here"
				apiSecret="secret api secret here"
				username="your skyfish username"
				password="your skyfish password"/>
		</skyfish>
	</providers>
</settings>

With the current implementation, the provider will always use the first set of <credentials>, meaning multiple <credentials> elements are not directly supported.