1
vote
2answers
86 views

Scrape facebook fan page

I'm trying to scrape a facebook fanpage using curl in php but it just give's me a blank page. here is my code. function curlFunction($source_url){ $ch = curl_init(); $userAgent = 'Mozilla/5.0 ...
0
votes
0answers
106 views

Difficulties using UNIX cURL to scrape Ajax Wicket Information

I am instructed to use write UNIX shell scripts that scrape certain websites. We use fiddler to trace the HTTP requests, then we write the cURLs accordingly. For the most part, scraping most websites ...
0
votes
2answers
250 views

Scraping google with dorks in PHP

I'm trying to scrape URLs from Google using a dork which is provided in the code. Right now I'm using cURL, but it's saying "curl_init() is in undefined function" So far I got: //This is the ...
0
votes
0answers
103 views

PHP cURL scraping HTML TR tag outputting NULL

Here's my code: <?php set_time_limit(0); $agent = 'User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.3) Gecko/2008100922 Ubuntu/8.04 (hardy) Firefox/3.0.3'; $url = ...
0
votes
1answer
156 views

Scrape new page using opengraph and curl

I am developing a website in which i have created a blog, on that blog people can comment via their facebook. Now i noticed that whenever i create a new blog, the comments plugin shows a warning "url ...
0
votes
0answers
151 views

PHP/CURL scrape vBulletin forum and files [closed]

i wrote a CURL/PHP code that can login to vBulletin forum and scrape all pages/posts and save it to my local PC as .html files. Now my problem is that the HTML have links/images/css that pointing to ...
0
votes
2answers
121 views

Scrape a statistic from YouTube using PHP

After struggling for 3 hours at trying to do this on my own, I have decided that it is either not possible or not possible for me to do on my own. My question is as follows: How can I scrape the ...
1
vote
0answers
119 views

Where to find Info on Crawling/Curling/Scraping Price Data using PHP from Multiple Online Sites without API [closed]

Any recommendations on good, comprehensive tutorials, books, examples, etc. that I could use to learn more about how to crawl/curl/scrape price data and to show a comparison of prices? I learn best ...
-1
votes
1answer
433 views

conditional website scraping with bash

The following script scrapes a website for movie titles #!/bin/bash parse_url() { ids=$(curl -s "$1" | grep -o -P '(?<=list.php\?mid=)\d+') for id in $ids do titles=$(curl -s ...
0
votes
1answer
265 views

How to download image and save image name based on URL?

How do I download all images from a web page and prefix the image names with the web page's URL (all symbols replaced with underscores)? For example, if I were to download all images from ...
0
votes
1answer
169 views

How can one scrape a website that requires login but w/ a randomly generated POST parameter? [closed]

I am trying to scrape some of the html from pottermore.com - it requires a login and I found the POST parameters, which include a really long randomly generated alphanumerical access key that changes ...
0
votes
1answer
183 views

Scrape a particular area of site content With a Secure Login

I am trying to scrape some particular text of a website which is login secured here is the tutorial on this using curl http://www.digeratimarketing.co.uk/2008/12/16/curl-page-scraping-script/ But I ...
1
vote
2answers
2k views

PHP Curl following redirects

I'm trying to be a bit sneeky and as part of a learning process try and improve my page scraping skills. One thing i've come across that I have yet to be able to solve is that certain sites will use ...
0
votes
2answers
507 views

How to scrape page requiring cookies and javascript in PHP

Is there an easy way to emulate cookies and javascript with a php script scraping a web page requiring it? The current response shows: <body><noscript>This site requires JavaScript and ...
1
vote
3answers
2k views

Scrape data from a website with PHP [closed]

I am trying to gather information into a text file, that I will later be uploading to a MySQL database. I am trying to gather all of the PS3 trophy information. I will be using this website : ...
0
votes
2answers
237 views

Getting the HTML source code of an .swf URI

I was wondering whether one could get the HTML source code from an .swf URI? For instance a web page such as: http://media.flixfacts.com/360view/acer_uk/002/acer_uk-002-en.swf When I use curl to ...
1
vote
2answers
810 views

How can scrape website via PHP that requires POST data?

I'm trying to scrape a website that takes in POST data to return the correct page (sans POST it returns 15 results, with POST data it returns all results). Currently my code is looking like this: ...
2
votes
2answers
3k views

How to scrape iframe content using cURL

Goal: I want to scrape the word "Paris" inside an iframe using cURL. Say you have a simple page containing an iframe: <html> <head> <title>Curl into this page</title> ...
-2
votes
1answer
206 views

Is it legal to use a search engine programatically using cURL? [closed]

I want to make a search request to Bing using cURL and use the search results. Is it against their terms of service? If so would you please post the URL where is says that. I could not find one.
-2
votes
1answer
712 views

How to scrape a site using a User-Agent for Ipad?

How can I scrape a site using a User-Agent for Ipad? I have this code below using curl in PHP which outputs the source but can't find the tags still. On Ipad or Safari browser using an Ipad ...
1
vote
3answers
144 views

What's the most efficient way to get this data, thousands of times?

What would be the best way to get the following data (the 4.0m after the </b> tag) using PHP's DOMDocument->loadHTML() system? I'm guessing some kind of CSS-stye selector? (LINE 240, always ...
0
votes
1answer
68 views

ReGex Problem get number of players

I want to scrape the the number of players from each playlist, just the value no commas. NOBLE MAP PACK (652 Players)</span><span>&#160;</span></a></li> Above is ...
0
votes
1answer
467 views

Extract Google Search Result Redirects

I have read several stackoverflow posts on how to extract the URLs of Google search results, and have written a similar implementation using python, curl and beautifulsoup. My question is, how can I ...
2
votes
3answers
1k views

Scrape a website URL to get the path of an image

I'm hacking together a simple php script that will build a list of photo albums I have on my Facebook fan page. Facebook kindly offer the Graph API which gives me back a nice list of Albums, however ...