| Net-OAuth documentation | Contained in the Net-OAuth distribution. |
Net::OAuth::ConsumerRequest - An OAuth Consumer Request
Consumer Requests are a proposed extension to OAuth, so other OAuth implementations may or may not support them.
Consumer Request Extension Draft:
http://oauth.googlecode.com/svn/spec/ext/consumer_request/1.0/drafts/1/spec.html
Keith Grennan, <kgrennan at cpan.org>
Copyright 2007 Keith Grennan, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Net-OAuth documentation | Contained in the Net-OAuth distribution. |
package Net::OAuth::ConsumerRequest; use warnings; use strict; use base 'Net::OAuth::Request'; sub allow_extra_params {1} sub sign_message {1}
1;