在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):ignacio/LuaOAuth开源软件地址(OpenSource Url):https://github.com/ignacio/LuaOAuth开源编程语言(OpenSource Language):Lua 98.1%开源软件介绍(OpenSource Introduction):Lua OAuthA Lua client library for OAuth 1.0 enabled servers. This is an adaptation of Jeffrey Friedl's Twitter OAuth Authentication Routines in Lua, for Lightroom Plugins, with Lightroom's code replaced by other libraries (i.e. LuaSec, LuaSocket, etc) and with HMAC-SHA1 calculations done with LuaCrypto instead of plain Lua. Most of the code was taken from Jeffrey Friedl's blog. Multipart encoding was adapted from lua-multipart-post. LuaOAuth supports two modes of operation. A "synchronous" mode were you block while you wait for the results or an "asynchronous" mode where you must supply "callbacks" in order to receive the results. LuaOAuth will behave asynchronously when used in conjunction with LuaNode. It is tested to work with Lua 5.1, Lua 5.2, LuaJIT 2.0.4, LuaJIT 2.1 (development) and LuaNode. UsageThere is some documentation available on the wiki and also you can take a look at the unit tests. For instance, the file ''unittest/echo_lab_madgex_com.lua'' creates a client that uses the test service provided by madgex.com. Basically, you create an OAuth client with your consumer key and secret, providing the OAuth service's endpoints URLs (i.e. where to request a token, where to get an access token, etc). local OAuth = require "OAuth"
local client = OAuth.new("key", "secret", {
RequestToken = "http://echo.lab.madgex.com/request-token.ashx",
AccessToken = "http://echo.lab.madgex.com/access-token.ashx"
}) Now you can request a token and then an access token: local values = client:RequestToken()
values = client:GetAccessToken() Once you have been authorized, you can perform requests: local code, headers, statusLine, body = client:PerformRequest("POST", "http://echo.lab.madgex.com/echo.ashx", {status = "Hello World From Lua (again)!" .. os.time()}) That is called the "synchronous" api. But if you use LuaOAuth with LuaNode you'll need to use the "asynchronous" api: local OAuth = require "OAuth"
local client = OAuth.new("key", "secret", {
RequestToken = "http://echo.lab.madgex.com/request-token.ashx",
AccessToken = "http://echo.lab.madgex.com/access-token.ashx"
})
client:RequestToken(function(values)
-- I receive the token in the callback I've supplied.
end) A more involved exampleThis example will show how to use LuaOAuth with Twitter. It assumes that you have already created a Twitter application. If you didn't, go to Twitter's developer site and create a new one. For instance, let's assume that you've created the application "MyTestApp", your consumer key is 'consumer_key' and your consumer secret is 'consumer_secret'. Your Twitter user is 'johncleese'. Now, you need to authorize the application. Let's use the "Out of band" (OOB) method. With this method, we will:
Copy the following in a script and run it from the console. Follow the instructions. local OAuth = require "OAuth"
local client = OAuth.new("consumer_key", "consumer_secret", {
RequestToken = "https://api.twitter.com/oauth/request_token",
AuthorizeUser = {"https://api.twitter.com/oauth/authorize", method = "GET"},
AccessToken = "https://api.twitter.com/oauth/access_token"
})
local callback_url = "oob"
local values = client:RequestToken({ oauth_callback = callback_url })
local oauth_token = values.oauth_token -- we'll need both later
local oauth_token_secret = values.oauth_token_secret
local tracking_code = "90210" -- this is some random value
local new_url = client:BuildAuthorizationUrl({ oauth_callback = callback_url, state = tracking_code })
print("Navigate to this url with your browser, please...")
print(new_url)
print("\r\nOnce you have logged in and authorized the application, enter the PIN")
local oauth_verifier = assert(io.read("*n")) -- read the PIN from stdin
oauth_verifier = tostring(oauth_verifier) -- must be a string
-- now we'll use the tokens we got in the RequestToken call, plus our PIN
local client = OAuth.new("consumer_key", "consumer_secret", {
RequestToken = "https://api.twitter.com/oauth/request_token",
AuthorizeUser = {"https://api.twitter.com/oauth/authorize", method = "GET"},
AccessToken = "https://api.twitter.com/oauth/access_token"
}, {
OAuthToken = oauth_token,
OAuthVerifier = oauth_verifier
})
client:SetTokenSecret(oauth_token_secret)
local values, err, headers, status, body = client:GetAccessToken()
for k, v in pairs(values) do
print(k,v)
end If everything went well, something like this will be printed:
Store 'oauth_token' and 'oauth_token_secret' somewhere, we'll need them later. We are now able to issue some requests. So type the following in a script. Remember that the values of 'oauth_token' and 'oauth_token_secret' needs to be replaced with what you got in the last step. local oauth_token = "<the value from last step>"
local oauth_token_secret = "<the value from last step>"
local client = OAuth.new("consumer_key", "consumer_secret", {
RequestToken = "https://api.twitter.com/oauth/request_token",
AuthorizeUser = {"https://api.twitter.com/oauth/authorize", method = "GET"},
AccessToken = "https://api.twitter.com/oauth/access_token"
}, {
OAuthToken = oauth_token,
OAuthTokenSecret = oauth_token_secret
})
-- the mandatory "Hello World" example...
local response_code, response_headers, response_status_line, response_body =
client:PerformRequest("POST", "https://api.twitter.com/1.1/statuses/update.json", {status = "Hello World From Lua!" .. os.time()})
print("response_code", response_code)
print("response_status_line", response_status_line)
for k,v in pairs(response_headers) do print(k,v) end
print("response_body", response_body) Now, let's try to request my Tweets. local oauth_token = "<the value from last step>"
local oauth_token_secret = "<the value from last step>"
local client = OAuth.new("consumer_key", "consumer_secret", {
RequestToken = "https://api.twitter.com/oauth/request_token",
AuthorizeUser = {"https://api.twitter.com/oauth/authorize", method = "GET"},
AccessToken = "https://api.twitter.com/oauth/access_token"
}, {
OAuthToken = oauth_token,
OAuthTokenSecret = oauth_token_secret
})
-- the mandatory "Hello World" example...
local response_code, response_headers, response_status_line, response_body =
client:PerformRequest("GET", "https://api.twitter.com/1.1/statuses/user_timeline.json", {screen_name = "iburgueno"})
print("response_code", response_code)
print("response_status_line", response_status_line)
for k,v in pairs(response_headers) do print(k,v) end
print("response_body", response_body) And now, let's post an image: local oauth_token = "<the value from last step>"
local oauth_token_secret = "<the value from last step>"
local client = OAuth.new("consumer_key", "consumer_secret", {
RequestToken = "https://api.twitter.com/oauth/request_token",
AuthorizeUser = {"https://api.twitter.com/oauth/authorize", method = "GET"},
AccessToken = "https://api.twitter.com/oauth/access_token"
}, {
OAuthToken = oauth_token,
OAuthTokenSecret = oauth_token_secret
})
local helpers = require "OAuth.helpers"
local req = helpers.multipart.Request{
status = "Hello World From Lua!",
["media[]"] = {
filename = "@picture.jpg",
data = picture_data -- some picture file you have read
}
}
local response_code, response_headers, response_status_line, response_body =
client:PerformRequest("POST",
"https://api.twitter.com/1.1/statuses/update_with_media.json",
req.body, req.headers
)
print("response_code", response_code)
print("response_status_line", response_status_line)
for k,v in pairs(response_headers) do print(k,v) end
print("response_body", response_body) |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论