Solicitando la configuración general de la WebTV.
soporte, ws.webtv, api, config, get
Variables GET específicas para esta solicitud:
Var | Valor | Descripción |
go | config | La sección del API |
do | get | La acción del API |
URL Resultante:
La URL de solicitud resultante sería similar a la siguiente (no se olvide de añadir la información requerida key, timestamp, salt and signature):
https://....../api.php?go=config&do=get&{información requerida}
Ninguna. No se requiren variables POST para esta solicitud.
Si la solicitud es exitosa, recibirá una respuesta como la siguiente:
{ "data" : { "banner_mobile" : "" , "banner_player" : "" , "banner_sidebar" : "" , "banner_top" : "" , "base_url" : "http:\/\/......" , "channel_related_videos_fetch_from" : "current_playlist" , "channel_related_videos_sorting" : "playlist" , "clip_related_videos_fetch_from" : "categories" , "clip_related_videos_sorting" : "random" , "date_format" : "d\/m\/Y" , "development_mode" : "0" , "external_page_link_menu_inclusion" : "all" , "external_page_link_target" : "_blank" , "external_page_link_title" : "My site" , "external_page_link_url" : "http:\/\/www.mysitelink.com\/" , "img_bkg" : "" , "img_bkg_color" : "#C8E3F7" , "img_bkg_use" : "0" , "img_logo" : "" , "img_player_logo" : "http:\/\/......\/uploads\/images\/logo_player_1426842561.png" , "img_player_logo_show" : "1" , "img_player_logo_url" : "" , "img_social" : "" , "lang_backend" : "en" , "lang_frontend" : "en" , "number_format_dec" : "2" , "number_format_dec_point" : "." , "number_format_tho_sep" : "," , "site_description" : "WebTV description" , "site_tags" : "tag1, tag2, tag3" , "site_title" : "WebTV Title" , "social_page_facebook" : "http:\/\/www.facebook.com\/......\/" , "social_page_flickr" : "" , "social_page_linkedin" : "" , "social_page_tuenti" : "" , "social_page_twitter" : "http:\/\/twitter.com\/......\/" , "social_page_vkontakte" : "" , "time_format" : "h:i:s A" , "time_zone" : "Europe\/Madrid" } } |
Si la solicitud no es exitosa (por ejemplo, si no suministró una firma con la solicitud), recibirá una respuesta como la siguiente:
{ "error" : "REQUEST_ERROR" , "error_long" : "Missing signature" } |
Posibles Mensajes de Error
Consulte los errores generales.
Preparando los datos GET y POST.
1 2 3 4 5 6 7 8 | // Las variables GET $GET_VARS = array ( "go" => "config" , "do" => "get" ); // Las variables POST $POST_VARS = array (); |
Generando salt, timestamp, signature y enviando la solicitud
*** El siguiente bloque de código es común para todas las solicitudes firmadas ***
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | // Recopilando la información del API y URL Base $API_KEY_ID = "1b323a1cb879fd4e66530fbad07a32ee" ; $API_SHARED_SECRET = "MWIzMjNhMWNiODc5ZmQ0ZTY2NTMwZmJhZDA3YTMyZWViOTQ3MDJiOGM2ZTU2NjE3" ; // Mantenga esto en un lugar seguro!!! // Generando salt y timestamp $salt = md5(mt_rand()); $timestamp = time(); // Generando la firma de validación // - Método por defecto: usando base64_encode(hash_hmac(...)) $signature = base64_encode (hash_hmac( 'sha256' , $salt . $timestamp , $API_SHARED_SECRET , true)); // comentar esta línea si se utiliza el otro método // - Método simplificado - disponible desde v60: usando md5(). // Este método requiere que la variable $API_SIGNATURE_GENERATION_MODE = 1; en el archivo config/Config.inc.php.<br> // $signature = md5($salt."-".$timestamp."-".$API_SHARED_SECRET); // debe "des-comentar" esta línea si se utiliza el método simplificado // Añadiendo timestamp, salt, key y signature a las variables GET $GET_VARS [ "timestamp" ] = $timestamp ; // UTC timestamp $GET_VARS [ "salt" ] = $salt ; $GET_VARS [ "key" ] = $API_KEY_ID ; // The API Key ID: This is public and is used by the API to identify the application; $GET_VARS [ "signature" ] = $signature ; // Creando la URL de la solicitud. Tenga presente que si no utiliza la función interna de PHP // para crear la solicitud HTTP entonces no se olvide de codificar los valores con URL Encode $REQUEST_URL = $API_URL . "?" .http_build_query( $GET_VARS ); // Lo anterior construirá una URL del como .../api.php?go=api_subject&do=api_action&etc... // Creando un recurso cURL con las opciones apropiadas $ch = curl_init(); curl_setopt( $ch , CURLOPT_URL, $REQUEST_URL ); curl_setopt( $ch , CURLOPT_POST, true); curl_setopt( $ch , CURLOPT_RETURNTRANSFER, true); curl_setopt( $ch , CURLOPT_HEADER, false); curl_setopt( $ch , CURLOPT_POSTFIELDS, $POST_VARS ); // If your PHP host does not have a valid SSL certificate, you will need to turn off SSL // Certificate Verification. This is dangerous (!), and should only be done temporarily // until a valid certificate has been installed curl_setopt( $ch , CURLOPT_SSL_VERIFYHOST, false); // Turns off verification of the SSL certificate. curl_setopt( $ch , CURLOPT_SSL_VERIFYPEER, false); // Turns off verification of the SSL certificate. // Enviando la solicitud al API $response = curl_exec( $ch ); // Procesando la respuesta if (! $response ) { echo 'Llamada al API falló' ; } else { print_r(json_decode( $response ,true)); } |