mvmrik
Well-Known Member
Гледам един скрипт за търсене чрез Google и ми иска да въведа Google API key, от къде мога да го взема? Даден е този адрес http://www.google.com/apis/ , но като го отворя ме пренасочва другаде.
Сега като се загледах това чудо май изобщо няма да тръгне, май е нещо старо - този адрес http://api.google.com/search/beta2 изобщо не е валиден.// insert your google key below (between the quotes), if you don't have one http://www.google.com/apis/ (it's free)
$yourGoogleKey = "";
// insert your website url below
$yourWebsite = "http://multiz.com/google";
// SearchFeed codes below
$trackID = "V4514137320"; // example: V4514137320
$pID = "46564"; // example: 46564
//----------------------------------------------------------------------------------------------
// build search query and connect to google
//----------------------------------------------------------------------------------------------
require_once("nusoap.php");
if($_GET) { extract($_GET, EXTR_PREFIX_SAME, "get_"); }
if($_POST) { extract($_POST, EXTR_PREFIX_SAME, "post_"); }
if ($yourGoogleKey == "") {
echo "You didn't insert a Google Key Yet! Get one at www.google.com/apis/ ..";
break;
}
if ($query && $www) {
$q = urldecode($query);
if ($www != "true") { $q.= " site:$yourWebsite"; }
if(!$start) { $start=0; } else { $start = intval($start); }
$parameters = array(
"key" => $yourGoogleKey, // google developer key
"q" => $q, // search query
"start" => $start, // result start index
"maxResults" => 10, // 10 is the maximum
"filter" => false, // filtering similar entries
"restrict" => "", // country and topic restrictions
"safeSearch" => false, // adult content filter
"lr" => "", // language restrictions
"ie" => "", // deprecated and ignored parameter
"oe" => "" // deprecated and ignored parameter
);
$soapclient = new soapclient("http://api.google.com/search/beta2");
$result = $soapclient->call("doGoogleSearch", $parameters, "urn:GoogleSearch");
$begin = $start + 1;
$end = $start + $parameters["maxResults"];
$total = $result["estimatedTotalResultsCount"];
}
Мисля че няма нужда от такова нещо. В смисъл, работи и без тоя ключ. Аз направих една търсачка през Адсенз, после си изтрих акаунта, а търсачката си работи и до днес заедно с модификациите и логото, което съм си качил, въпреки че акаунта го няма отдавна.
8. Why is the daily limit only 1,000 queries?
The Google SOAP Search API service was an experimental free program, so the resources available to support the program are limited. We encourage you to check out the AJAX Search API, which does not have a limit on the number of queries per day.