Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have to get all the links in a webpage but all the links are loaded using post method.

Please provide any solution to get all the links.

share|improve this question
1  
please show us what you've tried. this is not a build-me-my-program site... – pavel Jul 26 '12 at 7:41
3  
You are supposed to have tried your best to solve the problem yourself before you post a request here. "Please provide any solution to get all the links" is very rude and the question suggests you are trying to get out of doing any work of your own. – Borodin Jul 26 '12 at 8:14
Thanks for your advice... – Anand Aug 13 '12 at 10:53

closed as too localized by DavidO, Borodin, daxim, ρяσѕρєя K, John Conde Jul 27 '12 at 2:25

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 1 down vote accepted

Using LWP:

use warnings;
use strict;
use LWP::UserAgent;
my $linkid = "link identifier";

my $browser = LWP::UserAgent->new;
my $response = $browser->post(
  'http://sitewithlinks/linkget.php',
  [
    'linkid'  => $linkid,
    'hidden' => 'somethinghidden'
  ],
);
die "Error: ", $response->status_line
 unless $response->is_success;

print "GOT THIS: $response->content";
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.