This is the first of many input methods we’ll begin to offer. This method takes an alpha-numeric screenname and adds it to a queue to be archived or re-archived:
Endpoint:
http://dataranch.net/archiver/adduser.php
Method: POST | Params - ‘sn=[Screen Name]’
PHP Post Example:
$Curl_Session = curl_init('http://dataranch.net/adduser.php');
curl_setopt ($Curl_Session, CURLOPT_POST, 1);
curl_setopt ($Curl_Session, CURLOPT_POSTFIELDS, "sn=".$USERNAME);
curl_setopt ($Curl_Session, CURLOPT_FOLLOWLOCATION, 1);
curl_exec ($Curl_Session);
curl_close ($Curl_Session);