Created
May 17, 2015 07:36
-
-
Save gin0606/c4f9aeb6ac852feed863 to your computer and use it in GitHub Desktop.
ブロック全解除するやつ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "twitter" | |
client = Twitter::REST::Client.new do |config| | |
config.consumer_key = "consumer_key" | |
config.consumer_secret = "consumer_secret" | |
config.access_token = "access_token" | |
config.access_token_secret = "access_token_secret" | |
end | |
client.unblock client.blocked_ids.to_a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment