aboutsummaryrefslogtreecommitdiffstats
path: root/examples/client/twitter.rb
diff options
context:
space:
mode:
Diffstat (limited to 'examples/client/twitter.rb')
-rw-r--r--examples/client/twitter.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/examples/client/twitter.rb b/examples/client/twitter.rb
index d31c15a..a67fad3 100644
--- a/examples/client/twitter.rb
+++ b/examples/client/twitter.rb
@@ -41,10 +41,12 @@ Plum::Client.start("userstream.twitter.com", 443) { |streaming|
if /にゃーん/ =~ json["text"]
args = { "status" => "@#{json["user"]["screen_name"]} にゃーん",
"in_reply_to_status_id" => json["id"].to_s }
- rest.post!("/1.1/statuses/update.json",
- args.map { |k, v| "#{k}=#{CGI.escape(v)}" }.join("&"),
- headers: { "authorization" => SimpleOAuth::Header.new(:post, "https://api.twitter.com/1.1/statuses/update.json", args, credentials).to_s,
- "content-type" => "application/x-www-form-urlencoded" })
+ rest.post(
+ "/1.1/statuses/update.json",
+ args.map { |k, v| "#{k}=#{CGI.escape(v)}" }.join("&"),
+ headers: { "authorization" => SimpleOAuth::Header.new(:post, "https://api.twitter.com/1.1/statuses/update.json", args, credentials).to_s,
+ "content-type" => "application/x-www-form-urlencoded" }
+ ).join
end
end
}