View Single Post
  #63  
Old 03-08-2013, 02:17 AM
Dream_Team100 Dream_Team100 is offline
Junior Member
 
Join Date: Aug 2012
Posts: 6
Dream_Team100 is on a distinguished road
Default

Re: Adobe HDS Downloader


Quote:
Originally Posted by dublin View Post
I'm not sure what you are asking...? If you want to bypass geoblock using that 'x-forwarded-for' header trick you don't need tor or proxy.
If you want download/watch bbc streams just replace 1.2.3.4 with any uk ip, then bbc server will think that you are from uk.
Thanks for your quick reply.

Unfortunately, it does not work for me, even though I have located with "http://www.utrace.de/" some UK IPs by larger companies and have entered into the script. Unfortunately, I am not familiar with programming, but I thought I would have done this right. Where is my fault?
Code:
// function headers()
        // {
          // $headers[] = 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8';
          // $headers[] = 'Connection: Keep-Alive';
          // return $headers;
        // }
		
	  function headers()
        {
          $headers[] = 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8';
          $headers[] = 'Connection: Keep-Alive';
          $headers[] = 'X-Forwarded-For: 134.223.2.33';
          return $headers;
        }

Last edited by KSV : 03-09-2013 at 10:55 PM. Reason: use code tags
Reply With Quote