Skip to content

Instantly share code, notes, and snippets.

@EffEPi
EffEPi / slack_delete.php
Created January 22, 2016 17:23
Delete Slack files older than 30 days that are not pinned. Rewrite of https://gist.github.com/jackcarter/d86808449f0d95060a40 . get your slack token here: https://api.slack.com/web
<?php
$token = '<YOUR TOKEN GOES HERE>';
#Delete files older than this:
$ts_to = time()-(30*24*3600);
function list_files($token, $ts_to){
$params = [
'token' => $token,
'ts_to' => $ts_to,