in reply to Perl + vimeo | Getting error in authenticating advanced API's
$str = uri_escape( $str) ;
This looks rather dubious to me. You are also URL-escaping the & separators, even though you probably shouldn't do that. Instead URI-escape each parameter individually.
my $v_search_url = "http://vimeo.com/api/rest/v2? method=$method...";
Are you sure there needs to be a spasce after the question mark?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl + vimeo | Getting error in authenticating advanced API's
by singh.ashwini (Initiate) on May 03, 2012 at 13:52 UTC | |
by moritz (Cardinal) on May 03, 2012 at 14:34 UTC |