home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _4d73c9eb03feeee69461d7dc81c36714 < prev    next >
Text File  |  2000-03-23  |  13KB  |  274 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>LWP::UserAgent - A WWW UserAgent class</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> LWP::UserAgent - A WWW UserAgent class</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#methods">METHODS</A></LI>
  26.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  27.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  28. </UL>
  29. <!-- INDEX END -->
  30.  
  31. <HR>
  32. <P>
  33. <H1><A NAME="name">NAME</A></H1>
  34. <P>LWP::UserAgent - A WWW UserAgent class</P>
  35. <P>
  36. <HR>
  37. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  38. <UL>
  39. <LI>Linux</LI>
  40. <LI>Solaris</LI>
  41. <LI>Windows</LI>
  42. </UL>
  43. <HR>
  44. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  45. <PRE>
  46.  require LWP::UserAgent;
  47.  $ua = new LWP::UserAgent;</PRE>
  48. <PRE>
  49.  $request = new HTTP::Request('GET', '<A HREF="file://localhost/etc/motd">file://localhost/etc/motd</A>');</PRE>
  50. <PRE>
  51.  $response = $ua->request($request); # or
  52.  $response = $ua->request($request, '/tmp/sss'); # or
  53.  $response = $ua->request($request, \&callback, 4096);</PRE>
  54. <PRE>
  55.  sub callback { my($data, $response, $protocol) = @_; .... }</PRE>
  56. <P>
  57. <HR>
  58. <H1><A NAME="description">DESCRIPTION</A></H1>
  59. <P>The <CODE>LWP::UserAgent</CODE> is a class implementing a simple World-Wide Web
  60. user agent in Perl. It brings together the HTTP::Request,
  61. HTTP::Response and the LWP::Protocol classes that form the rest of the
  62. core of libwww-perl library. For simple uses this class can be used
  63. directly to dispatch WWW requests, alternatively it can be subclassed
  64. for application-specific behaviour.</P>
  65. <P>In normal use the application creates a UserAgent object, and then
  66. configures it with values for timeouts, proxies, name, etc. It next
  67. creates an instance of <CODE>HTTP::Request</CODE> for the request that
  68. needs to be performed. This request is then passed to the UserAgent
  69. <A HREF="#item_request"><CODE>request()</CODE></A> method, which dispatches it using the relevant protocol,
  70. and returns a <CODE>HTTP::Response</CODE> object.</P>
  71. <P>The basic approach of the library is to use HTTP style communication
  72. for all protocol schemes, i.e. you also receive an <CODE>HTTP::Response</CODE>
  73. object for gopher or ftp requests.  In order to achieve even more
  74. similarity to HTTP style communications, gopher menus and file
  75. directories are converted to HTML documents.</P>
  76. <P>The <A HREF="#item_request"><CODE>request()</CODE></A> method can process the content of the response in one of
  77. three ways: in core, into a file, or into repeated calls to a
  78. subroutine.  You choose which one by the kind of value passed as the
  79. second argument to request().</P>
  80. <P>The in core variant simply stores the content in a scalar 'content' attribute
  81. of the response object and is suitable for small
  82. HTML replies that might need further parsing.  This variant is used if
  83. the second argument is missing (or is undef).</P>
  84. <P>The filename variant requires a scalar containing a filename as the
  85. second argument to <A HREF="#item_request"><CODE>request()</CODE></A> and is suitable for large WWW objects
  86. which need to be written directly to the file without requiring large
  87. amounts of memory. In this case the response object returned from
  88. <A HREF="#item_request"><CODE>request()</CODE></A> will have an empty content attribute.  If the request fails, then the
  89. content might not be empty, and the file will be untouched.</P>
  90. <P>The subroutine variant requires a reference to callback routine as the
  91. second argument to <A HREF="#item_request"><CODE>request()</CODE></A> and it can also take an optional chuck
  92. size as the third argument.  This variant can be used to construct
  93. ``pipe-lined'' processing, where processing of received chuncks can
  94. begin before the complete data has arrived.  The callback function is
  95. called with 3 arguments: the data received this time, a reference to
  96. the response object and a reference to the protocol object.  The
  97. response object returned from <A HREF="#item_request"><CODE>request()</CODE></A> will have empty content.  If
  98. the request fails, then the the callback routine is
  99. called, and the response->content might not be empty.</P>
  100. <P>The request can be aborted by calling <A HREF="../../../lib/Pod/perlfunc.html#item_die"><CODE>die()</CODE></A> in the callback
  101. routine.  The die message will be available as the ``X-Died'' special
  102. response header field.</P>
  103. <P>The library also allows you to use a subroutine reference as
  104. content in the request object.  This subroutine should return the
  105. content (possibly in pieces) when called.  It should return an empty
  106. string when there is no more content.</P>
  107. <P>
  108. <HR>
  109. <H1><A NAME="methods">METHODS</A></H1>
  110. <P>The following methods are available:</P>
  111. <DL>
  112. <DT><STRONG><A NAME="item_%24ua_%3D_new_LWP%3A%3AUserAgent%3B">$ua = new LWP::UserAgent;</A></STRONG><BR>
  113. <DD>
  114. Constructor for the UserAgent.  Returns a reference to a
  115. LWP::UserAgent object.
  116. <P></P>
  117. <DT><STRONG><A NAME="item_simple_request">$ua->simple_request($request, [$arg [, $size]])</A></STRONG><BR>
  118. <DD>
  119. This method dispatches a single WWW request on behalf of a user, and
  120. returns the response received.  The <CODE>$request</CODE> should be a reference
  121. to a <CODE>HTTP::Request</CODE> object with values defined for at least the
  122. <CODE>method()</CODE> and <CODE>uri()</CODE> attributes.
  123. <P>If <CODE>$arg</CODE> is a scalar it is taken as a filename where the content of
  124. the response is stored.</P>
  125. <P>If <CODE>$arg</CODE> is a reference to a subroutine, then this routine is called
  126. as chunks of the content is received.  An optional <CODE>$size</CODE> argument
  127. is taken as a hint for an appropriate chunk size.</P>
  128. <P>If <CODE>$arg</CODE> is omitted, then the content is stored in the response
  129. object itself.</P>
  130. <P></P>
  131. <DT><STRONG><A NAME="item_request">$ua->request($request, $arg [, $size])</A></STRONG><BR>
  132. <DD>
  133. Process a request, including redirects and security.  This method may
  134. actually send several different simple requests.
  135. <P>The arguments are the same as for <A HREF="#item_simple_request"><CODE>simple_request()</CODE></A>.</P>
  136. <P></P>
  137. <DT><STRONG><A NAME="item_redirect_ok">$ua->redirect_ok</A></STRONG><BR>
  138. <DD>
  139. This method is called by <A HREF="#item_request"><CODE>request()</CODE></A> before it tries to do any
  140. redirects.  It should return a true value if a redirect is allowed
  141. to be performed. Subclasses might want to override this.
  142. <P>The default implementation will return FALSE for POST request and TRUE
  143. for all others.</P>
  144. <P></P>
  145. <DT><STRONG><A NAME="item_credentials">$ua->credentials($netloc, $realm, $uname, $pass)</A></STRONG><BR>
  146. <DD>
  147. Set the user name and password to be used for a realm.  It is often more
  148. useful to specialize the <A HREF="#item_get_basic_credentials"><CODE>get_basic_credentials()</CODE></A> method instead.
  149. <P></P>
  150. <DT><STRONG><A NAME="item_get_basic_credentials">$ua->get_basic_credentials($realm, $uri, [$proxy])</A></STRONG><BR>
  151. <DD>
  152. This is called by <A HREF="#item_request"><CODE>request()</CODE></A> to retrieve credentials for a Realm
  153. protected by Basic Authentication or Digest Authentication.
  154. <P>Should return username and password in a list.  Return undef to abort
  155. the authentication resolution atempts.</P>
  156. <P>This implementation simply checks a set of pre-stored member
  157. variables. Subclasses can override this method to e.g. ask the user
  158. for a username/password.  An example of this can be found in
  159. <CODE>lwp-request</CODE> program distributed with this library.</P>
  160. <P></P>
  161. <DT><STRONG><A NAME="item_agent">$ua-><CODE>agent([$product_id])</CODE></A></STRONG><BR>
  162. <DD>
  163. Get/set the product token that is used to identify the user agent on
  164. the network.  The agent value is sent as the ``User-Agent'' header in
  165. the requests. The default agent name is ``libwww-perl/#.##'', where
  166. ``#.##'' is substitued with the version numer of this library.
  167. <P>The user agent string should be one or more simple product identifiers
  168. with an optional version number separated by the ``/'' character.
  169. Examples are:</P>
  170. <PRE>
  171.   $ua->agent('Checkbot/0.4 ' . $ua->agent);
  172.   $ua->agent('Mozilla/5.0');</PRE>
  173. <P></P>
  174. <DT><STRONG><A NAME="item_from">$ua-><CODE>from([$email_address])</CODE></A></STRONG><BR>
  175. <DD>
  176. Get/set the Internet e-mail address for the human user who controls
  177. the requesting user agent.  The address should be machine-usable, as
  178. defined in RFC 822.  The from value is send as the ``From'' header in
  179. the requests.  There is no default.  Example:
  180. <PRE>
  181.   $ua->from('aas@sn.no');</PRE>
  182. <P></P>
  183. <DT><STRONG><A NAME="item_timeout">$ua-><CODE>timeout([$secs])</CODE></A></STRONG><BR>
  184. <DD>
  185. Get/set the timeout value in seconds. The default <A HREF="#item_timeout"><CODE>timeout()</CODE></A> value is
  186. 180 seconds, i.e. 3 minutes.
  187. <P></P>
  188. <DT><STRONG><A NAME="item_cookie_jar">$ua-><CODE>cookie_jar([$cookies])</CODE></A></STRONG><BR>
  189. <DD>
  190. Get/set the <EM>HTTP::Cookies</EM> object to use.  The default is to have no
  191. cookie_jar, i.e. never automatically add ``Cookie'' headers to the
  192. requests.
  193. <P></P>
  194. <DT><STRONG><A NAME="item_parse_head">$ua-><CODE>parse_head([$boolean])</CODE></A></STRONG><BR>
  195. <DD>
  196. Get/set a value indicating wether we should initialize response
  197. headers from the <head> section of HTML documents. The default is
  198. TRUE.  Do not turn this off, unless you know what you are doing.
  199. <P></P>
  200. <DT><STRONG><A NAME="item_max_size">$ua-><CODE>max_size([$bytes])</CODE></A></STRONG><BR>
  201. <DD>
  202. Get/set the size limit for response content.  The default is undef,
  203. which means that there is no limit.  If the returned response content
  204. is only partial, because the size limit was exceeded, then a
  205. ``X-Content-Range'' header will be added to the response.
  206. <P></P>
  207. <DT><STRONG><A NAME="item_clone">$ua->clone;</A></STRONG><BR>
  208. <DD>
  209. Returns a copy of the LWP::UserAgent object
  210. <P></P>
  211. <DT><STRONG><A NAME="item_is_protocol_supported">$ua-><CODE>is_protocol_supported($scheme)</CODE></A></STRONG><BR>
  212. <DD>
  213. You can use this method to query if the library currently support the
  214. specified <CODE>scheme</CODE>.  The <CODE>scheme</CODE> might be a string (like 'http' or
  215. 'ftp') or it might be an URI object reference.
  216. <P></P>
  217. <DT><STRONG><A NAME="item_mirror">$ua->mirror($url, $file)</A></STRONG><BR>
  218. <DD>
  219. Get and store a document identified by a URL, using If-Modified-Since,
  220. and checking of the Content-Length.  Returns a reference to the
  221. response object.
  222. <P></P>
  223. <DT><STRONG><A NAME="item_proxy">$ua-><CODE>proxy(...)</CODE></A></STRONG><BR>
  224. <DD>
  225. Set/retrieve proxy URL for a scheme:
  226. <PRE>
  227.  $ua->proxy(['http', 'ftp'], '<A HREF="http://proxy.sn.no:8001/">http://proxy.sn.no:8001/</A>');
  228.  $ua->proxy('gopher', '<A HREF="http://proxy.sn.no:8001/">http://proxy.sn.no:8001/</A>');</PRE>
  229. <P>The first form specifies that the URL is to be used for proxying of
  230. access methods listed in the list in the first method argument,
  231. i.e. 'http' and 'ftp'.</P>
  232. <P>The second form shows a shorthand form for specifying
  233. proxy URL for a single access scheme.</P>
  234. <P></P>
  235. <DT><STRONG><A NAME="item_env_proxy">$ua-><CODE>env_proxy()</CODE></A></STRONG><BR>
  236. <DD>
  237. Load proxy settings from *_proxy environment variables.  You might
  238. specify proxies like this (sh-syntax):
  239. <PRE>
  240.   gopher_proxy=<A HREF="http://proxy.my.place/">http://proxy.my.place/</A>
  241.   wais_proxy=<A HREF="http://proxy.my.place/">http://proxy.my.place/</A>
  242.   no_proxy="my.place"
  243.   export gopher_proxy wais_proxy no_proxy</PRE>
  244. <P>Csh or tcsh users should use the <CODE>setenv</CODE> command to define these
  245. envirionment variables.</P>
  246. <P></P>
  247. <DT><STRONG><A NAME="item_no_proxy">$ua-><CODE>no_proxy($domain,...)</CODE></A></STRONG><BR>
  248. <DD>
  249. Do not proxy requests to the given domains.  Calling no_proxy without
  250. any domains clears the list of domains. Eg:
  251. <PRE>
  252.  $ua->no_proxy('localhost', 'no', ...);</PRE>
  253. <P></P></DL>
  254. <P>
  255. <HR>
  256. <H1><A NAME="see also">SEE ALSO</A></H1>
  257. <P>See <A HREF="../../../site/lib/LWP.html">the LWP manpage</A> for a complete overview of libwww-perl5.  See <EM>lwp-request</EM> and
  258. <EM>lwp-mirror</EM> for examples of usage.</P>
  259. <P>
  260. <HR>
  261. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  262. <P>Copyright 1995-1998 Gisle Aas.</P>
  263. <P>This library is free software; you can redistribute it and/or
  264. modify it under the same terms as Perl itself.</P>
  265. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  266. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  267. <STRONG><P CLASS=block> LWP::UserAgent - A WWW UserAgent class</P></STRONG>
  268. </TD></TR>
  269. </TABLE>
  270.  
  271. </BODY>
  272.  
  273. </HTML>
  274.