Бесплатный php скрипт для сбора свежих запросов через платный сервис... - Форум успешных вебмастеров - GoFuckBiz.com
 
 
Форум успешных вебмастеров - GoFuckBiz.com

  Форум успешных вебмастеров - GoFuckBiz.com > Бизнес-решения > Скрипты, программы и технические решения
Дата
USD/RUB93.4409
BTC/USD64454.6601
Скрипты, программы и технические решения Обсуждаем скрипты, программы и новые технологии.

Закрытая тема
Опции темы Опции просмотра
Старый 06.02.2015, 20:06   #1
x999xx
xx999x
 
Аватар для x999xx
 
Регистрация: 20.12.2010
Сообщений: 2,215
Бабло: $473391
По умолчанию Бесплатный php скрипт для сбора свежих запросов через платный сервис...

скрипт который решил выложить на GFB, но требует API ключ от http://keywordtool.io/api - 80$

на слово bmw+x5+ гдето 5-6к уникальных фраз с каждого поисковика
например:
Цитата:
bmw x5 accessories
bmw x5 albany ny
bmw x5 alternator problems
...
ознакомлю с лимитами на API ключ:
Цитата:
поисковик в час в сутки
Google 1,400 10,080,000
YouTube 1,400 10,080,000
Bing 600 4,320,000
App Store 1,000 7,200,000
собственно ничего не мешает в сутки дергать вплоть до 10кк кеев

скрипт ниже, чтобы не быть совсем уж простым, добавил глубину
ну т.е, если кей у нас bmw+ ('+' = пробел) то оно ищет все кеи от a до z

исходный файл key.php
Код:
<?php
$i=0;
$apikey = 'апи'ключ';
/*
__________________________!!!!!__________________________________________!!!!!!__________________________________________________________________________
_
_ для использования возможно понадобится расскоментировать строчку в файле php.ini с curl : ";extension=ext\php_curl.dll" => "extension=ext\php_curl.dll"
_ for usage php maybe need curl dll, replace ; in php.ini file with this module curl : ";extension=ext\php_curl.dll" => "extension=ext\php_curl.dll"
_________________________________________________________________________________________________________________________________________________________
_________________________________________________________________________________________________________________________________________________________

__USAGE: 
__Использование:
[ c:\php\php <script_filename> <key> <output file> ]
__Output: 
__Вывод:
]   c:\php>php key.php "bmw x6" "filename.txt"
]   Keyword: bmw x6a
]   bmw x6 activehybrid for sale // bmw x6 activehyb....

__in file all keys will be at new line
__в исходящем файле все кейворды будут с новой строчки

*/

function getKey($key)
{
	global $apikey;
	$params = array(
	  'apikey' => $apikey,
	  'keyword' => $key,
	  'country' => 'us',
	  'language' => 'en',
	  'output' => 'json',
	);
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL, 'http://api.keywordtool.io/v1/search/bing?' . http_build_query($params));
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
	$output = curl_exec($ch);
	$response = json_decode($output, TRUE);
	return $response;
}

if(!$argv[2]) 
	{
	$file = fopen('keys.txt','a');
	} 
	else 
	{ 
	$file = fopen('keys_'.$argv[2].'.txt','a'); 
	}
	
for ($ch=97;$ch<=122;$ch++)
	{
	if(!$argv[1]) 
	{
		$key = sprintf("keywords%c", $ch);
	} 
	else 
	{ 
		$key = sprintf($argv[1]."%c", $ch); 
	}
	
	
	echo 'Keyword: '.$key."\n";
	$response = getKey($key);
	foreach($response as $key=>$value)
	 { 
		foreach($value as $ke=>$ky) 
		{  
			foreach ($ky as $what=>$my) 
			{	
				foreach($my as $info=>$bablo) 
				{
					fputs ($file,$bablo."\n");
					echo $bablo.' // ';
					$i++;
				} 
			}
		} 
	}
	echo "\n";
}
fclose ($file);
echo "\n".'Total: '.$i;
собственно использование,
Цитата:
c:\php>php key.php "bmw x6" "filename.txt"
nix:
Цитата:
php key.php "bmw x6" "filename.txt"
ну и для теста - апи'ключ = a575414a2ed85288ba1c1ff8ccd2901273503732

в следующей версии прикручу многопоточность и вебинтерфейс, ну и для гфб бесплатно будет, рендомно 10 ключей крутится будет
__________________
я знаю стабильный курс на будущее eur/(usd+0.001) + usd/(eur+0.00101) = 0 ( )
x999xx вне форума  
Старый 06.02.2015, 20:08   #2
Maximus325
Технодаун
 
Регистрация: 11.05.2007
Сообщений: 10,384
Бабло: $1503235
По умолчанию

А какой источник ключей у http://keywordtool.io/?
__________________
ноу криминалити ин раша
Maximus325 вне форума  
Старый 06.02.2015, 20:08   #3
x999xx
xx999x
 
Аватар для x999xx
 
Регистрация: 20.12.2010
Сообщений: 2,215
Бабло: $473391
ТС -->
автор темы ТС По умолчанию

пока скрипт запрограммирован на bing, потому что гугл часто матерится, в дальнейшем прикручу выбор

всмысле? чей апи ключ? - мой
а они сами мутятся, ну гугл саджестион один из них, но он много матерится

я редко когда на имя своего сайта выдергивал кеев аж 162кб
__________________
я знаю стабильный курс на будущее eur/(usd+0.001) + usd/(eur+0.00101) = 0 ( )
x999xx вне форума  
Старый 06.02.2015, 20:36   #4
spasibo
Senior Member
 
Регистрация: 14.04.2013
Сообщений: 131
Бабло: $28815
По умолчанию

You can make up to 5 API requests per minute and 7,200 API requests daily. Every API request will return up to 1,400+ keywords for Google and YouTube, 600 for Bing and 1,000+ for App Store.

лучше уж прямо с гугля многопоточно с проксями парсить кеи.
spasibo вне форума  
Старый 06.02.2015, 20:41   #5
x999xx
xx999x
 
Аватар для x999xx
 
Регистрация: 20.12.2010
Сообщений: 2,215
Бабло: $473391
ТС -->
автор темы ТС По умолчанию

ну тут после моих тестов они лимиты чуть подогнули *im_sorry*
хочу же, говорю - довести центр до ума, ну точнее уже как вебинтерфейс (вход через гфб (ну или реф должен гфб содержать))

проксями с гугла нет труда парсить, но тут бинг, аппсторе и тп, кейворд саджестион был, но его так все изъебли что и он глючит

не волнуйтесь, это 0.0.1 версия, и то, я ее со своим ключем в паблик слил
в версии 0.0.2 и ключ поменяется, и потоки
ну и вообще в идеале думаю сделать полноценный сайт, если что с юзерами и админкой, и прикруткой тойже рекламы, кто какой поисковик юзать будет - покажет время и поддержка плагинов моим ПО

ну и в итоге сделать такой центр, который бы не зависел от всяких апи ключей

сделать реально, но тут за 80$ все чуть попроще...

собсна ток для тех кто с баблом )

ну збс все потестили убили мне api-ключ

тогда в первом посте поправить нужно что
поисковик ключ/запрос ключ/день
__________________
я знаю стабильный курс на будущее eur/(usd+0.001) + usd/(eur+0.00101) = 0 ( )
x999xx вне форума  
Старый 06.02.2015, 21:19   #6
x999xx
xx999x
 
Аватар для x999xx
 
Регистрация: 20.12.2010
Сообщений: 2,215
Бабло: $473391
ТС -->
автор темы ТС По умолчанию

пример работы:
Цитата:
консоль$ php key.php "bmw x5" "out.txt"
Keyword: bmw x5a
bmw x5 accessories // bmw x5 alternator problems // bmw x5 auxiliary fan battery drain // bmw x5 alarm keeps going off // bmw x5 adjustable arm rear // bmw x5 air conditioner problems // bmw x5 alternator replacement cost // bmw x5 albany ny // bmw x5 accessories // bmw x5 alternator problems // bmw x5 auxiliary fan battery drain // bmw x5 alarm keeps going off // bmw x5 adjustable arm rear // bmw x5 air conditioner problems // bmw x5 alternator replacement cost // bmw x5 albany ny // bmw x5 accessories // bmw x5 alternator problems // bmw x5 auxiliary fan battery drain // bmw x5 alarm keeps going off // bmw x5 adjustable arm rear // bmw x5 air conditioner problems // bmw x5 alternator replacement cost // bmw x5 albany ny // bmw x5 airbag light on // bmw x5 accessories // bmw x5 accessories aftermarket // bmw x5 accessories catalog // bmw x5 adjustable arm rear // bmw x5 aftermarket radio // bmw x5 air suspension inactive // bmw x5 air suspension issues // bmw x5 abs light // bmw x5 abs module problems // bmw x5 abs relay 2006 // bmw x5 abs module // bmw x5 abs relay location // bmw x5 abs codes // bmw x5 abs lock up // bmw x5 abs module repair // bmw x5 // bmw x5 accessories // bmw x5 accessories aftermarket // bmw x5 accessories catalog // bmw x5 a/c compressor // bmw x5 accessories 2013 // bmw x5 ac panel repair // bmw x5 ac defrost sensor replacement // bmw x5 ac problems // bmw x5 adjustable arm rear // bmw x5 adaptive drive // bmw x5 adjustable steering wheel issues // bmw x5 adaptive headlight control unit lcm // bmw x5 adaptive suspension // bmw x5 adaptive m suspension // bmw x5 adaptive drive sale // bmw x5 adaptive drive review // bmw x5 aero kit // bmw x5 aerodynamic kit // bmw x5 aerodynamic package // bmw x5 aero blade // bmw x5 ac evaporator what does it do // bmw x5 engine malfunction // bmw x5 edrive // bmw x5 engine for sale // bmw x5 aftermarket radio // bmw x5 aftermarket accessories // bmw x5 aftermarket parts // bmw x5 aftermarket // bmw x5 aftermarket stereo // bmw x5 aftermarket wheels // bmw x5 aftermarket dvd // bmw x5 aftermarket wheels used // bmw x5 agm battery // bmw x5 gross vehicle weight // bmw x5 gvw // bmw x5 gas mileage // bmw x5 grill guard // bmw x5 garage door opener // bmw x5 garage door opener programming // bmw x5 gt // bmw x5 hybrid // bmw x5 heater problems // bmw x5 hybrid release date // bmw x5 heat warm not hot // bmw x5 how many passengers // bmw x5 hybrid 2015 // bmw x5 hamann body kit // bmw x5 height // bmw x5 air conditioner problems // bmw x5 air suspension inactive // bmw x5 air suspension problems // bmw x5 air suspension issues // bmw x5 airbag recall // bmw x5 airbag reset // bmw x5 airbag light stays on // bmw x5 air suspension // bmw x5 adjustable arm rear // bmw x5 jacking points // bmw x5 jack // bmw x5 jump start // bmw x5 japan // bmw x5 jacksonville fl // bmw x5 jeep 2013 // bmw x5 jack points // bmw x5 akron ohio // bmw x5 accessories // bmw x5 key programming // bmw x5 key replacement cost // bmw x5 keychain // bmw x5 key fob // bmw x5 kelley blue book // bmw x5 key battery replacement // bmw x5 alternator problems // bmw x5 alarm keeps going off // bmw x5 alternator replacement cost // bmw x5 albany ny // bmw x5 alternator replacement // bmw x5 alternator torque specs // bmw x5 alternator // bmw x5 alpina // bmw x5 ambient lighting // bmw x5 amplifier // bmw x5 amg // bmw x5 amplifier location // bmw x5 amarillo texas // bmw x5 ambiance lighting // bmw x5 amplified harness // bmw x5 amp research powerstep // bmw x5 vs x5 m // bmw x5 // bmw x5 angel eye bulb replacement // bmw x5 angel eyes // bmw x5 antifreeze // bmw x5 annapolis // bmw x5 angel eye bulb // bmw x5 antifreeze coolant // bmw x5 antifreeze leak // bmw x5 and x6 // bmw x5 aol autos // bmw x5 oil type // bmw x5 oil leak // bmw x5 owners manual // bmw x5 oil change // bmw x5 owners manual 2013 // bmw x5 oil change cost // bmw x5 oil // bmw x5 apr finance // bmw x5 ac panel repair // bmw x5 ac problems // bmw x5 problems // bmw x5 plug-in hybrid // bmw x5 price // bmw x5 parts // bmw x5 p1341 p1343 p1345 // bmw x5 equalizer settings // bmw x5 quality issues // bmw x5 accessories // bmw x5 quarter mile // bmw x5 quarter mile time // bmw x5 qtp exhaust // bmw x5 accessories aftermarket // bmw x5 accessories catalog // bmw x5 armored // bmw x5 arizona // bmw x5 reviews // bmw x5 reliability // bmw x5 reviews 2015 // bmw x5 ac recharge // bmw x5 recalls // bmw x5 rims // bmw x5 ashtray // bmw x5 ashtray does not stay closed // bmw x5 assembly // bmw x5 e series // bmw x5 specs // bmw x5 spare wheel kit // bmw x5 shift light stays on // bmw x5 suv year 2015 // bmw x5 atlanta // bmw x5 atlanta for sale // bmw x5 atlanta ga // bmw x5 atf fluid // bmw x5 at good price // bmw x5 atsiliepimai // bmw x5 towing capacity // bmw x5 transmission failsafe mode // bmw x5 auxiliary fan battery drain // bmw x5 auction // bmw x5 aux input // bmw x5 automatic transmission fluid // bmw x5 auxiliary fan not working // bmw x5 auxiliary fan // bmw x5 autotrader // bmw x5 australia // bmw x5 average sale price // bmw x5 avigo // bmw x5 vs audi q7 // bmw x5 vs acura mdx // bmw x5 vs porsche cayenne // bmw x5 vs audi q5 // bmw x5 vs mercedes ml350 // bmw x5 vs range rover sport // bmw x5 // bmw x5 awd and dsc malfunction // bmw x5 awd system // bmw x5 awd // bmw x5 awards // bmw x5 wiki // bmw x5 wheels // bmw x5 wheels for sale // bmw x5 won't start in cold weather // bmw x5 axle nut size // bmw x5 axle replacement // bmw x5 axle problems // bmw x5 axle nut socket // bmw x5 axle socket // bmw x5 axle // bmw x5 axle boot // bmw x5 xdrive35i // bmw x5 year to year changes // bmw x5 air conditioner problems // bmw x5 air suspension inactive // bmw x5 youtube // bmw x5 air suspension problems // bmw x5 air suspension issues // bmw x5 airbag recall // bmw x5 airbag reset // bmw x5 zero to 60 // bmw x5 zf 8hp70 // bmw x5 zmp // bmw x5 axle nut size // bmw x5 ashtray does not stay closed // bmw x5 assembly // bmw x5 axle replacement // bmw x5 axle problems // bmw x5 0-60 // bmw x5 0-60 times // bmw x5 07 // bmw x5 06 codes when pushing trip meter // bmw x5 07 for sale // bmw x5 04 for sale // bmw 2005 // bmw x5 01 // bmw x5 19 inch wheels // bmw x5 19 wheels // bmw x5 1999 // bmw x5 100k // bmw x5 18 wheel // bmw x5 1998 // bmw x5 19 e4 code // bmw x5 18 inch wheels // bmw x5 2015 // bmw x5 2016 // bmw x5 2014 // bmw x5 2005 // bmw x5 2013 // bmw x5 2012 // bmw x5 2015 review // bmw x5 2010 // bmw x5 3rd row seat // bmw x5 35d // bmw x5 35d for sale // bmw x5 35i vs 50i // bmw x5 35i // bmw x5 35d review // bmw x5 35d problems // bmw x5 3rd row cargo liner // bmw x5 4.8is for sale // bmw x5 4.8 for sale // bmw x5 4.8is // bmw x5 4.8 2007 review // bmw x5 4.4i // bmw x5 4x4 light on what to do // bmw x5 4.6is // bmw x5 4.4i engine // bmw x5 e53 radiator flush // bmw x5 e53 coolant requirements // bmw x5 e53 // bmw x5 e53 supercharger // bmw x5 e53 alignment specs // bmw x5 e53 forum // bmw x5 50i review // bmw x5 50i 0-60 // bmw x5 6 cylinder // bmw x5 6wa vs. 6wb // bmw x5 6 cyl for sale // bmw x5 60 000 mile service // bmw x5 60154 // bmw x5 60626 // bmw x5 6 volt // bmw x5 6 seater // bmw x5 e 70 repair manuals // bmw x5 e70 4.8i engine failure // bmw x5 e70 coolant pump location // bmw x5 e70 chrome window trim // bmw x5 e70 radio // bmw x5 7 seater // bmw x5 e70 // bmw x5 e70 forum // bmw x5 8 cylinder // bmw x5 8 cylinder engine // bmw x5 8 cylinder 2014 // bmw x5 8 passenger // bmw x5 85014 // bmw x5 8-speed v 6-speed gas mileage // bmw x5 e 70 repair manuals // bmw x5 e70 4.8i engine failure // bmw x5 100k // bmw x5 100k service // 10 bmw x5 brake reset //
Keyword: bmw x5b
bmw x5 battery // bmw x5 battery location // bmw x5 battery drain problem // bmw x5 bowden cable replacement // bmw x5 backup camera oem // bmw x5 battery replacement cost // bmw x5 blower not working // bmw x5 body kits // bmw x5 battery // bmw x5 battery location // bmw x5 battery drain problem // bmw x5 bowden cable replacement // bmw x5 backup camera oem // bmw x5 battery replacement cost // bmw x5 blower not working // bmw x5 body kits // bmw x5 battery // bmw x5 battery location // bmw x5 battery drain problem // bmw x5 backup camera oem // bmw x5 battery replacement cost // bmw x5 backup camera // bmw x5 backup camera upgrade // bmw x5 battery drain // bmw x5 borsodban // bmw x5 backup camera // bmw x5 backup camera oem // bmw x5 backup camera upgrade // bmw x5 ball joint replacement // bmw x5 battery // bmw x5 battery drain // bmw x5 battery drain problem // bmw x5 battery // bmw x5 battery location // bmw x5 battery drain problem // bmw x5 bowden cable replacement // bmw x5 backup camera oem // bmw x5 battery replacement cost // bmw x5 blower not working // bmw x5 body kits // bmw x5 // bmw x5 camshaft freezing problem // bmw x5 coolant type // bmw x5 clock spring // bmw x5 common problems // bmw x5 cargo cover // bmw x5 cargo space // bmw x5 cranks but won't start // bmw x5 coolant leak // bmw x5 diesel // bmw x5 diesel problems // bmw x5 dimensions // bmw x5 drive release date // bmw x5 diesel vs gas // bmw x5 diesel for sale // bmw x5 door lock problems // bmw x5 door handle problem // bmw x5 belt replacement // bmw x5 bellevue // bmw x5 belt routing // bmw x5 bentley manual // bmw x5 belt whine // bmw x5 best prices // bmw x5 best year to buy // bmw x5 best year // bmw x5 for sale // bmw x5 forum // bmw x5 f15 wheels // bmw x5 floor mats // bmw x5 for sale by owner // bmw x5 fuse diagram // bmw x5 fuse box location // bmw x5 for sale in miami // bmw x5 gross vehicle weight // bmw x5 gvw // bmw x5 gas mileage // bmw x5 grill guard // bmw x5 garage door opener // bmw x5 garage door opener programming // bmw x5 gt // bmw x5 gas vs diesel // bmw x5 hybrid // bmw x5 heater problems // bmw x5 hybrid release date // bmw x5 heat warm not hot // bmw x5 how many passengers // bmw x5 hybrid 2015 // bmw x5 hamann body kit // bmw x5 height // bmw x5 bike rack // bmw x5 bike rack system // bmw x5 bike carrier // bmw x5 bike rack review // bmw x5 birmingham al // bmw x5 bicycle rack // bmw x5 bike hitch // bmw x5 bike lift // bmw x5 jacking points // bmw x5 jack // bmw x5 jump start // bmw x5 japan // bmw x5 jacksonville fl // bmw x5 jeep 2013 // bmw x5 jack points // bmw x5 jump seats // bmw x5 key programming // bmw x5 key replacement cost // bmw x5 keychain // bmw x5 key fob // bmw x5 kelley blue book // bmw x5 key battery replacement // bmw x5 key battery // bmw x5 killing battery all time // bmw x5 blower not working // bmw x5 black grill // bmw x5 blower motor replacement // bmw x5 blower noise // bmw x5 blog // bmw x5 blind spot sensor // bmw x5 blue smoke // bmw x5 bluetooth // bmw x5 m // bmw x5 bmw apps // bmw x5 bmw // bmw x5 bmw connected web app // bmw x5 m for sale // bmw x5 m 2015 // bmw x5 m review // bmw x5 m sport // bmw x5 // bmw x5 vs x5 m // bmw x5 new body style // bmw x5 navigation update // bmw x5 n63 injector problems // bmw x5 no right side exhaust // bmw x5 nav screen replacement // bmw x5 nashville tn // bmw x5 nav screen // bmw x5 navigation repair // bmw x5 bowden cable replacement // bmw x5 body kits // bmw x5 body style change // bmw x5 bolt pattern // bmw x5 body parts // bmw x5 body change // bmw x5 borsodban // bmw x5 body kits for sale // bmw x5 problems // bmw x5 plug-in hybrid // bmw x5 price // bmw x5 parts // bmw x5 p1341 p1343 p1345 // bmw x5 parts and accessories // bmw x5 plugin // bmw x5 p0430 // bmw x5 quality issues // bmw x5 quarter mile // bmw x5 quarter mile time // bmw x5 qtp exhaust // bmw x5 battery // bmw x5 battery location // bmw x5 battery drain problem // bmw x5 backup camera oem // bmw x5 brake pads // bmw x5 brake light problems // bmw x5 brake light switch // bmw x5 brochure // bmw x5 brake fluid // bmw x5 brake light reset // bmw x5 brush guard // bmw x5 brake controller // bmw x5 specs // bmw x5 spare wheel kit // bmw x5 shift light stays on // bmw x5 suv year 2015 // bmw x5 spare tire kit // bmw x5 service engine soon light // bmw x5 specifications // bmw x5 suv // bmw x5 towing capacity // bmw x5 transmission failsafe mode // bmw x5 tires // bmw x5 tire pressure // bmw x5 third row // bmw x5 towing package // bmw x5 turning radius // bmw x5 tire size // bmw x5 build // bmw x5 buyers guide forum // bmw x5 bumper // bmw x5 burning oil // bmw x5 buyer demographics // bmw x5 buyers guide // bmw x5 bug shield for the hood // bmw x5 bumper protector // bmw x5 vs audi q7 // bmw x5 vs acura mdx // bmw x5 vs porsche cayenne // bmw x5 vs audi q5 // bmw x5 vs mercedes ml350 // bmw x5 vs range rover sport // bmw x5 vs x3 // bmw x5 vs lexus rx 350 // bmw x5 // bmw x5 wiki // bmw x5 wheels // bmw x5 wheels for sale // bmw x5 won't start in cold weather // bmw x5 wheels and tires // bmw x5 weight // bmw x5 wallpaper // bmw x5 won't turn over // bmw x5 xdrive35i // bmw x5 xdrive // bmw x5 xdrive50i // bmw x5 xdrive35d // bmw x5 xline // bmw x5 xdrive35d review // bmw x5 xdrive50i review // bmw x5 xdrive35d for sale // bmw x5 by owner // bmw x5 by dealer seattle wa // bmw x5 year to year changes // bmw x5 youtube // bmw x5 y spoke rims // bmw x5 year // bmw x5 y spoke // bmw x5 yahoo autos // bmw x5 zero to 60 // bmw x5 zf 8hp70 // bmw x5 zmp // bmw x5 specs // bmw x5 spare wheel kit // bmw x5 shift light stays on // bmw x5 suv year 2015 // bmw x5 spare tire kit // bmw x5 0-60 // bmw x5 0-60 times // bmw x5 07 // bmw x5 06 codes when pushing trip meter // bmw x5 07 for sale // bmw x5 04 for sale // bmw 2005 // bmw x5 01 // bmw x5 19 inch wheels // bmw x5 19 wheels // bmw x5 1999 // bmw x5 100k // bmw x5 18 wheel // bmw x5 1998 // bmw x5 19 e4 code // bmw x5 18 inch wheels // bmw x5 2015 // bmw x5 2016 // bmw x5 2014 // bmw x5 2005 // bmw x5 2013 // bmw x5 2012 // bmw x5 2015 review // bmw x5 2010 // bmw x5 3rd row seat // bmw x5 35d // bmw x5 35d for sale // bmw x5 35i vs 50i // bmw x5 35i // bmw x5 35d review // bmw x5 35d problems // bmw x5 3rd row cargo liner // bmw x5 4.8is for sale // bmw x5 4.8 for sale // bmw x5 4.8is // bmw x5 4.8 2007 review // bmw x5 4.4i // bmw x5 4x4 light on what to do // bmw x5 4.6is // bmw x5 4.4i engine // bmw x5 50i review // bmw x5 50i 0-60 // bmw x5 50i road test // bmw x5 50i real mpg // bmw x5 5.0 horsepower // bmw x5 50i for sale // bmw x5 5.0 // bmw x5 50d // bmw x5 6 cylinder // bmw x5 6wa vs. 6wb // bmw x5 6 cyl for sale // bmw x5 60 000 mile service // bmw x5 60154 // bmw x5 60626 // bmw x5 6 volt // bmw x5 6 seater // bmw x5 7 seater // bmw x5 7 seater review // bmw x5 7 passenger seating // bmw x5 7 seat // bmw x5 7 passenger used // bmw x5 7 seater for sale // bmw x5 7 places // bmw x5 7 places occasion // bmw x5 8 cylinder // bmw x5 8 cylinder engine // bmw x5 8 cylinder 2014 // bmw x5 8 passenger // bmw x5 85014 // bmw x5 8-speed v 6-speed gas mileage // bmw x5 100k // bmw x5 p1092 // bmw x5 p1093 // bmw x5 p1085 // bmw x5 p1086 // bmw x5 100k service // 10 bmw x5 brake reset //
Keyword: bmw x5c
^C
ну и реклама не чтобы деньги за нее получать, а чтобы при заходе на сайт можно было сразу сообразить движухи

Цитата:
Сообщение от spasibo Посмотреть сообщение
You can make up to 5 API requests per minute and 7,200 API requests daily. Every API request will return up to 1,400+ keywords for Google and YouTube, 600 for Bing and 1,000+ for App Store.

лучше уж прямо с гугля многопоточно с проксями парсить кеи.
если тебе такой скрипт нужен - могу устроить бесплатно

прокси в набор включены
__________________
я знаю стабильный курс на будущее eur/(usd+0.001) + usd/(eur+0.00101) = 0 ( )
x999xx вне форума  
Старый 07.02.2015, 16:07   #7
allanklinton
Юниор
 
Регистрация: 06.02.2015
Сообщений: 3
Бабло: $1310
По умолчанию

Интересно, а можешь под другой сайты примерно такой же скрипт подмутить?
allanklinton вне форума  
Старый 07.02.2015, 20:26   #8
x999xx
xx999x
 
Аватар для x999xx
 
Регистрация: 20.12.2010
Сообщений: 2,215
Бабло: $473391
ТС -->
автор темы ТС По умолчанию

Цитата:
Сообщение от allanklinton Посмотреть сообщение
Интересно, а можешь под другой сайты примерно такой же скрипт подмутить?
под какой?
ну когда будет сервис будет проще, а пока только bing yahoo google appstore
__________________
я знаю стабильный курс на будущее eur/(usd+0.001) + usd/(eur+0.00101) = 0 ( )
x999xx вне форума  
Старый 09.02.2015, 00:49   #9
x999xx
xx999x
 
Аватар для x999xx
 
Регистрация: 20.12.2010
Сообщений: 2,215
Бабло: $473391
ТС -->
автор темы ТС По умолчанию

давайте еще пожелания, я хоть начну делать
__________________
я знаю стабильный курс на будущее eur/(usd+0.001) + usd/(eur+0.00101) = 0 ( )
x999xx вне форума  
Старый 09.02.2015, 21:20   #10
allanklinton
Юниор
 
Регистрация: 06.02.2015
Сообщений: 3
Бабло: $1310
По умолчанию

Цитата:
Сообщение от x999xx Посмотреть сообщение
давайте еще пожелания, я хоть начну делать
Так что тут давать... У меня свой такой parser bing есть и ни какой оплаты не надо совсем)))
Использую для себя и очень доволен
allanklinton вне форума