1LWP::Protocol::ldapi(3)User Contributed Perl DocumentatioLnWP::Protocol::ldapi(3)
2
3
4
6 LWP::Protocol::ldapi - Provide LDAPI support for LWP::UserAgent
7
9 use LWP::UserAgent;
10 use MIME::Base64;
11
12 $ua = LWP::UserAgent->new();
13 $res = $ua->get('ldapi:///' .
14 'o=University%20of%20Michigan,c=US??sub?(cn=Babs%20Jensen)',
15 Authorization => 'Basic '.encode_Base64('cn=John Doe:secret')):
16
18 The LWP::Protocol::ldapi module provides support for using ldapi
19 schemed URLs with LWP. This module is a plug-in to the LWP protocol
20 handling, so you don't use it directly.
21
23 LWP::Protocol::ldap, LWP::Protocol::ldaps
24
26 Copyright (c) 2012 Peter Marschall. All rights reserved. This program
27 is free software; you can redistribute it and/or modify it under the
28 same terms as Perl itself.
29
30
31
32perl v5.28.0 2015-04-02 LWP::Protocol::ldapi(3)