in reply to Re: Call URL
in thread Call URL
so you'd have to check the page sent back for something to indicate success...
It's easier just using LWP::UserAgent.
use LWP::UserAgent; my $response = LWP::UserAgent->new()->get($smsurl); die if !$response->is_success;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Call URL
by f00li5h (Chaplain) on Nov 08, 2008 at 03:33 UTC | |
by ikegami (Patriarch) on Nov 08, 2008 at 07:18 UTC | |
by f00li5h (Chaplain) on Nov 10, 2008 at 04:15 UTC |