Skip to content

Instantly share code, notes, and snippets.

@charles-hollenbeck
charles-hollenbeck / Pastebin.php
Last active July 17, 2022 02:26
Pastebin API in PHP; $pastebin = new Pastebin("DEVKEY"); $pastebin->login("USER", "PASS"); $pastebin->deletePaste("pasteid");
<?
class Pastebin{
private $token;
private $devkey;
private $loginURL = 'http://www.pastebin.com/api/api_login.php';
private $pasteURL = "http://www.pastebin.com/api/api_post.php";
function __construct($devkey){
$this ->devkey = $devkey;
}
function login($username, $password){