Exemple #1
0
<?php

require_once "../../main.php";
define("GOOGLE_API", "AIzaSyDEqBO9D1tLqSdX3QOtqy6-ZfotMZ5e-6A");
$client = new REST_CLIENT();
$client->setMethod(REST_CLIENT::METHOD_POST);
$client->addParam("longUrl", "http://www.amitinside.com/");
$client->addParam("key", GOOGLE_API);
$result = $client->request("https://www.googleapis.com/urlshortener/v1/url", REST_CLIENT::CONTENT_JSON);
explode($result);
Exemple #2
0
<?php

require_once "../main.php";
$Client = new REST_CLIENT();
$Client->setMethod(REST_CLIENT::METHOD_GET);
$Client->addParam('q', 'microsoft');
$result = $Client->request('http://ajax.googleapis.com/ajax/services/search/web?v=1.0', REST_CLIENT::CONTENT_JSON);
explore($result);
Exemple #3
0
<?php

ini_set("max_execution_time", 18000);
require_once "../../main.php";
define("BING_API", "B91795CF2EB537EC1694547C3B1A4CCE00790E52");
$Client = new REST_CLIENT();
$Client->setMethod(REST_CLIENT::METHOD_GET);
$Client->setTimeout = 18000;
$no = range(5717, 5938);
$files = array();
foreach ($no as $v) {
    array_push($files, "C:\\xampp\\htdocs\\REST_SOCKET_CLIENT\\examples\\gtranslate\\file\\" . "AMIT" . "_" . $v . ".log");
}
//explore($files);
foreach ($files as $file) {
    $data = file_get_contents($file);
    $params = array("Sources" => "Translation", "Translation.SourceLanguage" => "Es", "Translation.TargetLanguage" => "en", "Query" => $data);
    foreach ($params as $key => $value) {
        $Client->addParam($key, $value);
    }
    $result = $Client->request('http://api.bing.net/json.aspx?AppId=' . BING_API, REST_CLIENT::CONTENT_JSON);
    //explore($result);
    $reply = $result->SearchResponse->Translation->Results[0]->TranslatedTerm;
    $reply .= "|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\n\n";
    $fp = fopen("final_translated.txt", "a+");
    $fp1 = fopen("log.txt", "a+");
    fwrite($fp, $reply);
    $file_parse = explode("\\", $file);
    fwrite($fp1, end($file_parse));
}
Exemple #4
0
<?php

include '../../main.php';
try {
    $Client = new REST_CLIENT();
    $Client->setMethod(REST_CLIENT::METHOD_POST);
    $Client->addParam('file', "@" . dirname(__FILE__) . "/test.txt");
    $result = $Client->request('[the url to the action file here]action.php');
    print_r($result);
} catch (Exception $e) {
    echo 'Problem catched.';
}