• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Net/Amazon/Signature/H29-Oct-2012-14735

t/H29-Oct-2012-421272

ChangesH A D29-Oct-2012105 53

INSTALLH A D29-Oct-20121 KiB4524

LICENSEH A D29-Oct-201224.1 KiB542467

MANIFESTH A D29-Oct-2012389 2423

META.jsonH A D29-Oct-201212.3 KiB379377

META.ymlH A D29-Oct-20128.4 KiB280279

Makefile.PLH A D29-Oct-20121.3 KiB6652

READMEH A D29-Oct-20121.9 KiB6243

SIGNATUREH A D29-Oct-20122.4 KiB5043

dist.iniH A D29-Oct-2012166 96

README

1NAME
2    Net::Amazon::Signature::V3 - Sign AWS requests -- V3
3
4VERSION
5    This document describes version 0.001 of Net::Amazon::Signature::V3 -
6    released October 29, 2012 as part of Net-Amazon-Signature-V3.
7
8SYNOPSIS
9        # somewhere inside the depths of your code...
10        my $signer = Net::Amazon::Signature::V3->new(id => $id, key => $key);
11        my $req = HTTP::Request->new('GET', $uri, [ $signer->signed_headers ]);
12
13        # profit!
14
15DESCRIPTION
16    Amazon requires authentication when interfacing with its web services;
17    this package implements V3 of Amazon's authentication schemes.
18
19METHODS
20  signed_headers
21    Returns a list of several key-value pairs suitable for including
22    directly as headers. These headers will authenticate the request to
23    Amazon.
24
25    Note that these headers are only good when used within 5 minutes of the
26    time that Amazon thinks it is.
27
28    This routine is largely based off code extracted from "request" in
29    Net::Amazon::Route53.
30
31SEE ALSO
32    Please see those modules/websites for more information related to this
33    module.
34
35    *   Net::Amazon::Route53 -- signed_headers() is largely based off of the
36        code
37
38    *   inside "request" in Net::Amazon::Route53.
39
40SOURCE
41    The development version is on github at
42    <http://github.com/RsrchBoy/net-amazon-signature-v3> and may be cloned
43    from <git://github.com/RsrchBoy/net-amazon-signature-v3.git>
44
45BUGS
46    Please report any bugs or feature requests on the bugtracker website
47    https://github.com/RsrchBoy/net-amazon-signature-v3/issues
48
49    When submitting a bug or request, please include a test-file or a patch
50    to an existing test-file that illustrates the bug or desired feature.
51
52AUTHOR
53    Chris Weyl <cweyl@alumni.drew.edu>
54
55COPYRIGHT AND LICENSE
56    This software is Copyright (c) 2012 by Chris Weyl.
57
58    This is free software, licensed under:
59
60      The GNU Lesser General Public License, Version 2.1, February 1999
61
62