You are here

function video_cck_livestream_request in Embedded Media Field 5

this is a wrapper for video_cck_request_xml that includes livestream's api key

File

contrib/video_cck/providers/livestream.inc, line 186
This include processes livestream.com media files for use by emfield.module.

Code

function video_cck_livestream_request($method, $args = array(), $cached = TRUE) {
  $args['dev_id'] = trim(variable_get('video_cck_livestream_api_key', ''));
  $args['method'] = $method;
  $request = emfield_request_xml('livestream', VIDEO_CCK_LIVESTREAM_REST_ENDPOINT, $args, $cached);
  return $request;
}