DataSift_Source::removeAuth PHP Method

removeAuth() public method

Removes authorization credentials for this DataSift_Source using the auth/remove
public removeAuth ( array $authIds )
$authIds array An array of authorization IDs to be removed
    public function removeAuth(array $authIds)
    {
        $response = $this->getUser()->post('source/auth/remove', array('id' => $this->getId(), 'auth_ids' => $authIds));
        $this->auth = $response['auth'];
    }