Skip to content

Instantly share code, notes, and snippets.

View plowzzer's full-sized avatar
🏠
Working from home

Pedro Pizzo de Paula plowzzer

🏠
Working from home
View GitHub Profile
@plowzzer
plowzzer / slack_delete.rb
Created April 15, 2016 17:43 — forked from jamescmartinez/slack_delete.rb
This Ruby script will bulk remove all Slack files older than 30 days. Just add your API token from https://api.slack.com/web#authentication into the token quotes at the top of the file.
require 'net/http'
require 'json'
require 'uri'
@token = ''
def list_files
ts_to = (Time.now - 30 * 24 * 60 * 60).to_i # 30 days ago
params = {
token: @token,