This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot/plugins/twitter_send.lua

36 lines
1.0 KiB
Lua
Raw Normal View History

2014-11-05 20:51:20 +01:00
local OAuth = require "OAuth"
local consumer_key = ""
local consumer_secret = ""
local access_token = ""
local access_token_secret = ""
2014-11-05 20:51:20 +01:00
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 = access_token,
OAuthTokenSecret = access_token_secret
})
function run(msg, matches)
2014-11-27 21:44:29 +01:00
if not is_sudo(msg) then
return "You aren't allowed to send tweets"
end
2014-11-05 20:51:20 +01:00
local response_code, response_headers, response_status_line, response_body =
client:PerformRequest("POST", "https://api.twitter.com/1.1/statuses/update.json", {
status = matches[1]
})
if response_code ~= 200 then
return "Error: "..response_code
end
2014-11-27 21:44:29 +01:00
return "Tweet sended"
2014-11-05 20:51:20 +01:00
end
return {
description = "Sends a tweet",
usage = "!tw [text]",
2014-11-17 21:55:25 +01:00
patterns = {"^!tw (.+)"},
2014-11-05 20:51:20 +01:00
run = run
}