<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Scraping Bing SERP</title>
	<atom:link href="http://www.fromzerotoseo.com/scraping-bing-serp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fromzerotoseo.com/scraping-bing-serp/</link>
	<description>Achieving High Rankings Through Coding</description>
	<lastBuildDate>Sat, 04 Feb 2012 16:15:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: nux</title>
		<link>http://www.fromzerotoseo.com/scraping-bing-serp/comment-page-1/#comment-2585</link>
		<dc:creator>nux</dc:creator>
		<pubDate>Tue, 30 Aug 2011 15:38:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=700#comment-2585</guid>
		<description>Thanks for this.  I&#039;ve modified it a bit to allow for searching through pages.

$bing_url = &#039;http://www.bing.com/search?q=&#039; . urlencode($keyword) . &#039;&amp;first=&#039;;

    for ($page = 0; $page &lt; 9; $page++) {
      // Grab website
      $curl = curl_init();
      if ($page == 0) {
        curl_setopt ($curl, CURLOPT_URL, $bing_url . &#039;1&#039;);
      } else {
        curl_setopt ($curl, CURLOPT_URL, $bing_url . $page . 1);
      }

I didn&#039;t use the getPage() function, but using the bing_url and actually passing either$ bing_url . &#039;1&#039; (first = 1) or $bing_url . $page . 1 (first=11, 21, etc) allows you to parse the pages.</description>
		<content:encoded><![CDATA[<p>Thanks for this.  I&#8217;ve modified it a bit to allow for searching through pages.</p>
<p>$bing_url = &#8216;<a href="http://www.bing.com/search?q=" rel="nofollow">http://www.bing.com/search?q=</a>&#8216; . urlencode($keyword) . &#8216;&amp;first=&#8217;;</p>
<p>    for ($page = 0; $page &lt; 9; $page++) {<br />
      // Grab website<br />
      $curl = curl_init();<br />
      if ($page == 0) {<br />
        curl_setopt ($curl, CURLOPT_URL, $bing_url . &#039;1&#039;);<br />
      } else {<br />
        curl_setopt ($curl, CURLOPT_URL, $bing_url . $page . 1);<br />
      }</p>
<p>I didn&#039;t use the getPage() function, but using the bing_url and actually passing either$ bing_url . &#039;1&#039; (first = 1) or $bing_url . $page . 1 (first=11, 21, etc) allows you to parse the pages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atef</title>
		<link>http://www.fromzerotoseo.com/scraping-bing-serp/comment-page-1/#comment-2530</link>
		<dc:creator>Atef</dc:creator>
		<pubDate>Sun, 07 Aug 2011 22:55:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=700#comment-2530</guid>
		<description>for not making bing show local results when using a proxy with a country like china add this to the link 

&amp;mkt=En-us</description>
		<content:encoded><![CDATA[<p>for not making bing show local results when using a proxy with a country like china add this to the link </p>
<p>&amp;mkt=En-us</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: seozero</title>
		<link>http://www.fromzerotoseo.com/scraping-bing-serp/comment-page-1/#comment-2413</link>
		<dc:creator>seozero</dc:creator>
		<pubDate>Fri, 17 Jun 2011 09:51:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=700#comment-2413</guid>
		<description>Awesome. Thanks for sharing!</description>
		<content:encoded><![CDATA[<p>Awesome. Thanks for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Noel</title>
		<link>http://www.fromzerotoseo.com/scraping-bing-serp/comment-page-1/#comment-2411</link>
		<dc:creator>Noel</dc:creator>
		<pubDate>Wed, 15 Jun 2011 20:16:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=700#comment-2411</guid>
		<description>I needed something quick and easy to test out some theories with on MANY linux machines, so I whipped up something similar using PHP and libCurl.  I&#039;ve posted the source @ http://pushandpop.blogspot.com/2011/06/simple-php-bing-serp-ranking-checker.html .</description>
		<content:encoded><![CDATA[<p>I needed something quick and easy to test out some theories with on MANY linux machines, so I whipped up something similar using PHP and libCurl.  I&#8217;ve posted the source @ <a href="http://pushandpop.blogspot.com/2011/06/simple-php-bing-serp-ranking-checker.html" rel="nofollow">http://pushandpop.blogspot.com/2011/06/simple-php-bing-serp-ranking-checker.html</a> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kerigen</title>
		<link>http://www.fromzerotoseo.com/scraping-bing-serp/comment-page-1/#comment-1870</link>
		<dc:creator>Kerigen</dc:creator>
		<pubDate>Wed, 10 Nov 2010 11:11:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=700#comment-1870</guid>
		<description>Hello Simone,
I have the same Problem. Do you find any solution?</description>
		<content:encoded><![CDATA[<p>Hello Simone,<br />
I have the same Problem. Do you find any solution?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wanderer</title>
		<link>http://www.fromzerotoseo.com/scraping-bing-serp/comment-page-1/#comment-1786</link>
		<dc:creator>Wanderer</dc:creator>
		<pubDate>Wed, 15 Sep 2010 21:05:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=700#comment-1786</guid>
		<description>Thanks for that tiny script! Works pretty well. Do you know y the &quot;Link:&quot; or &quot;LinkDomain:&quot; operator doesn´t work any more?</description>
		<content:encoded><![CDATA[<p>Thanks for that tiny script! Works pretty well. Do you know y the &#8220;Link:&#8221; or &#8220;LinkDomain:&#8221; operator doesn´t work any more?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simone</title>
		<link>http://www.fromzerotoseo.com/scraping-bing-serp/comment-page-1/#comment-1733</link>
		<dc:creator>Simone</dc:creator>
		<pubDate>Tue, 24 Aug 2010 07:21:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=700#comment-1733</guid>
		<description>Hi to all! I&#039;ve got the same trouble of Toni.

My function is recursive and look for all the pages of Bing, but
- I cannot access more then 20 pages
- (or) I can use this URL http://www.bing.com/search?q=ip%3a216.239.34.21&amp;count=50&amp;first=199 like last one

I also tryed writing and sending back cookies to Bing, without luck.</description>
		<content:encoded><![CDATA[<p>Hi to all! I&#8217;ve got the same trouble of Toni.</p>
<p>My function is recursive and look for all the pages of Bing, but<br />
- I cannot access more then 20 pages<br />
- (or) I can use this URL <a href="http://www.bing.com/search?q=ip%3a216.239.34.21&#038;count=50&#038;first=199" rel="nofollow">http://www.bing.com/search?q=ip%3a216.239.34.21&#038;count=50&#038;first=199</a> like last one</p>
<p>I also tryed writing and sending back cookies to Bing, without luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Toni</title>
		<link>http://www.fromzerotoseo.com/scraping-bing-serp/comment-page-1/#comment-1526</link>
		<dc:creator>Toni</dc:creator>
		<pubDate>Tue, 16 Mar 2010 09:59:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=700#comment-1526</guid>
		<description>Have anyone managed to scrap the first 100 Bing results page:
http://www.bing.com/search?q=twitter&amp;count=100

I get the following in return:
HTTP/1.1 200 OK Cache-Control: no-cache Date: Tue, 16 Mar 2010 09:50:41 GMT Content-Length: 0 Connection: keep-alive Set-Cookie: OVR=flt=0&amp;flt2=0&amp;DomainVertical=0&amp;Cashback=cbtest4&amp;MSCorp=kievfinal&amp;GeoPerf=0&amp;Release=osf1; domain=.bing.com; path=/

If you figured it out please send an email at tonixx AT gmail.com

Thx!</description>
		<content:encoded><![CDATA[<p>Have anyone managed to scrap the first 100 Bing results page:<br />
<a href="http://www.bing.com/search?q=twitter&#038;count=100" rel="nofollow">http://www.bing.com/search?q=twitter&#038;count=100</a></p>
<p>I get the following in return:<br />
HTTP/1.1 200 OK Cache-Control: no-cache Date: Tue, 16 Mar 2010 09:50:41 GMT Content-Length: 0 Connection: keep-alive Set-Cookie: OVR=flt=0&amp;flt2=0&amp;DomainVertical=0&amp;Cashback=cbtest4&amp;MSCorp=kievfinal&amp;GeoPerf=0&amp;Release=osf1; domain=.bing.com; path=/</p>
<p>If you figured it out please send an email at tonixx AT gmail.com</p>
<p>Thx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: seozero</title>
		<link>http://www.fromzerotoseo.com/scraping-bing-serp/comment-page-1/#comment-1483</link>
		<dc:creator>seozero</dc:creator>
		<pubDate>Mon, 08 Feb 2010 07:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=700#comment-1483</guid>
		<description>sent you email</description>
		<content:encoded><![CDATA[<p>sent you email</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ukescuba</title>
		<link>http://www.fromzerotoseo.com/scraping-bing-serp/comment-page-1/#comment-1482</link>
		<dc:creator>ukescuba</dc:creator>
		<pubDate>Sun, 07 Feb 2010 20:06:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=700#comment-1482</guid>
		<description>ill share mine with you when im done with it :)

when you get chance can you drop me an email id like to show something that you can use with your scraped content :)</description>
		<content:encoded><![CDATA[<p>ill share mine with you when im done with it <img src='http://www.fromzerotoseo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>when you get chance can you drop me an email id like to show something that you can use with your scraped content <img src='http://www.fromzerotoseo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

