1. Go to this page and download the library: Download wetransfer/php-sdk library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wetransfer / php-sdk example snippets
// This can be your index.php, for example.
eep reading!
// Read the API Key value from the environment, using
$wtClient = WeTransfer\Client::setApiKey(getenv('WT_API_KEY'));
// Or Transfer\Client::setApiKey($WT_API_KEY);
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\JsonResponse;
class SampleController extends Controller
{
public function indexAction(Request $request) {
$name = $request->request->get('transfer_name');
$description = $request->request->get('transfer_description');
$transfer = WeTransfer\Transfer::create($name, $description);
// You will need to save the transfer->getId() value to access the transfer in the future.
// Use a data base, the session or return it to the client
$entityManager = $this->getDoctrine()->getManager();
$entityManager->persist($transfer);
$entityManager->flush();
return new JsonResponse($transfer);
}
}