lwp
How can I connect to a iPhone web application using Perl?
Is it possible to use Perl\'s LWP from my Windows PC to scrape contents of iPhone web application? If yes, which parameters I should change or could someone开发者_如何学JAVA provide example?No, web ap[详细]
2023-03-24 08:20 分类:问答So LWP::UserAgent can automatically detect the charset?
our $ua = LWP::UserAgent->new; my $response = $ua->get($url); if($response->is_success) { my $perl_hash_or_arrayref = decode_开发者_开发知识库json(encode(\"UTF-8\", $response->decoded_cont[详细]
2023-03-16 16:13 分类:问答"get" not working in perl
I\'m new to perl. In the past few days, I\'ve made some simple scripts that save websites\' source codes to my computer via \"get.\" They do what they\'re supposed to, but will not get the content of[详细]
2023-03-11 23:41 分类:问答HTML::TableExtract not finding table
I\'m having trouble with some code I\'ve written. It\'s basically a proof of concept for myself and I\'ll be using it to run words through to get another form of it (fun Icelandic conjugation). In the[详细]
2023-03-08 17:58 分类:问答Loggin into website with LWP and Perl
Somewhat inexperienced programmer here trying to write a program to log into my courses site and download all the content (lectures homeworks etc). Obviously it is a password protected site so I have[详细]
2023-03-07 13:49 分类:问答Testing for redirects in Perl
I was hoping to check for webpage redirects using Perl. I\'ve tried using LWP but it only catches 503 redirects and not htaccess redirects or Javascript redirect开发者_如何转开发s. Any help would be g[详细]
2023-03-07 12:54 分类:问答Perl::Mechanize: running a simple crawler with a loop [multiple queries]
currently ironing out a way to parse the data of a page: http://www.foundationfinder.ch/ i love to do it in Perl: Well - i am just musing which is the best way to do the job.[详细]
2023-03-06 13:11 分类:问答PHP Simple HTML DOM or Python-BSoup: which one is the easier approach?
i am currently working on a approach to parse a site that contains datas on Foundations in Europe. http://www.foundationfinder.ch/ which has a dataset of 790 foundations. All the data are free to use[详细]
2023-03-06 09:30 分类:问答How can I tell how a website is determining if the browser has JS enabled?
We have a Perl script that emulates a browser using LWP::UserAgent to login to a website and download some data. Recently that website was changed so that you have to have JavaScript enabled in order[详细]
2023-03-05 13:58 分类:问答Perl post request to send zip file as base64?
I have a Perl script trying to send a zip file like so with LWP UserAgent module my $req = POST $url, Content_Type => \'form-d开发者_JAVA技巧ata\',[详细]
2023-03-03 00:27 分类:问答