PHP code example of fcs / fcs-sdk-php

1. Go to this page and download the library: Download fcs/fcs-sdk-php 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/ */

    

fcs / fcs-sdk-php example snippets




// Include the SDK along with you other project dependencies
// using the Composer autoloader
=> 'your-fcs-access-key',
    'secret' => 'your-fcs-access-secret',
    // chunkSize is optional. When uploading a file, sets how many bytes are sent at a time. 
    // The default is 1048576, which is 1 MB.
    'chunkSize' => 1048576, 
));

$uri = $fcs->getAssetUriByEan("9780306406157",      // EAN/ISBN13 of the book to download
                              "epub",               // See Asset Types below
                              9.99,                 // Digital list or sales price
                                                    //     If this is null or "",
                                                    //     the TMM price will be used
                              get_current_user());  // This is a unique id or name of the
                                                    //     current user.  Used to determine
                                                    //     downloads per user.

header("Location: $uri");
json
        {
            "dk-php": "*"
            }
        }