Perl Net :: OAuth2 Example Code

You need to use the sample code (yes, I went through the CPAN docs) for authentication using Net::OAuth2

I have the following:

  • consumer key
  • user secret
  • access key
  • access secret

PS I believe that in general you provide the key and the secret key of the consumer and get the access key and secret, but in this case I already have them.

+8
authentication perl oauth
source share
1 answer

Besides SYNOPSIS in the POD for Net :: OAuth2 , which you have already seen, does the code in the test directory help

t / 01-client.t

If not, you can contact the author of the module via the email address in the POD and ask for an example.

+4
source share

All Articles