Simple OAuth and OAuth2 API for Luvit.io. It allows users to authenticate against providers and thus act as OAuth consumers. Tested against Twitter (http://twitter.com) and Github (http://github.com).
Since version 1.0.0
Utopia uses lit as dependency manager:
lit install voronianski/oauth
To run examples clone this repo, create your applications on Twitter (for OAuth example) and Github (for OAuth2), paste necessary keys and secrets into files and execute them like luvit example/oauth.lua
:
local OAuth = require('luvit-oauth').OAuth
local oauth = OAuth:new({
requestUrl = 'https://api.twitter.com/oauth/request_token',
accessUrl = 'https://api.twitter.com/oauth/access_token',
consumerKey = '{{YOUR CONSUMER KEY}}',
consumerSecret = '{{YOUR CONSUMER SECRET}}'
})
oauth:getOAuthRequestToken(function (err, requestToken, requestTokenSecret)
p(err, requestToken, requestTokenSecret)
-- use your flow for verification
oauth:getOAuthAccessToken(requestToken, requestTokenSecret, '{{YOUR OAUTH VERIFIER}}', function (err, accessToken, accessTokenSecret)
p(err, accessToken, accessTokenSecret)
end)
end)
and luvit example/oauth2.lua
:
local OAuth2 = require('luvit-oauth').OAuth2
local oauth2 = OAuth2:new({
clientID = '{{YOUR CLIENT ID}}',
clientSecret = '{{YOUR CLIENT SECRET}}',
baseSite = 'https://github.com/login'
})
local opts = {redirect_uri = 'http://luvit.io/oauth'}
-- go to received URL and copy code
local authURL = oauth2:getAuthorizeUrl(opts)
oauth2:getOAuthAccessToken('{{YOUR CODE}}', opts, function (err, access_token, refresh_token, results)
p(err, access_token, refresh_token, results)
end)
Create instance of OAuth
class by calling :new(options)
with options table as the only argument.
requestUrl
- required request token urlaccessUrl
- required oauth token urlconsumer_key
- required public keyconsumer_secret
- required private keysignature_method
- allowed by spec signing crypto method. It could be'HMAC-SHA1'
(default),'PLAINTEXT'
or'RSA-SHA1'
authorize_callback
- optional authorization callback url, defaults tonil
nonce_size
- size of unique token your application will generate for each unique request, default32
version
- spec version, defaults to1.0
customHeaders
- optional table with http headers to be sent in the requests
Change things like http methods for request token and access token urls.
requestTokenHttpMethod
- default'POST'
accessTokenHttpMethod
- default'POST'
followRedirects
- defaulttrue
Requests an unauthorized request token (http://tools.ietf.org/html/rfc5849#section-2.1). extraParams
is an optional table value which will be sent as querystring or as application/x-www-form-urlencoded
for POST
body.
Exchanges a request token for an access token (http://tools.ietf.org/html/rfc5849#section-2.3).
Allows to make OAuth signed requests to provided API url
string.
method
- http method that will be send, required (not necessary with shorteners)oauth_token
- required access tokenoauth_token_secret
- required access token secretpost_body
- body that will be sent withPOST
orPUT
post_content_type
- content type forPOST
orPUT
requests, defaultapplication/x-www-form-urlencoded
extraParams
- optional table with values that will be sent as querystring orpost_body
forPOST
requests if it's not provided
Create instance of OAuth2
class by calling :new(options)
with options
table as the only argument.
clientID
- required client idclientSecret
- required client secretbaseSite
- required base OAuth provider urlauthorizePath
- optional, default'/oauth/authorize'
accessTokenPath
- optional, default'/oauth/access_token'
customHeaders
- optional table with http headers to be sent in the requests
Change access_token
param name to different one if authorization server waits for another.
Change authorization method that defaults to Bearer
.
If you use the OAuth2
exposed :get()
shortener method this will specify whether to use an 'Authorization'
header instead of passing the access_token
as a query parameter.
Get an authorization url to proceed flow and receive code
that will be used for getting access_token
.
Get an access token from the authorization server.
Allows to make OAuth2 signed requests to provided API url
string.
method
- http method that will be send, required (not necessary with shorteners)access_token
- required access tokenpost_body
- body that will be sent withPOST
orPUT
post_content_type
- content type forPOST
orPUT
requests, defaultapplication/x-www-form-urlencoded
headers
- optional table with values that will be sent with request
These methods allow to skip method
field in request options for both OAuth
and OAuth2
implementations:
:get(url, options, callback)
:post(url, options, callback)
:put(url, options, callback)
:patch(url, options, callback)
:delete(url, options, callback)
MIT Licensed
Copyright (c) 2014-2016 Dmitri Voronianski [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.