Created
March 10, 2015 03:49
-
-
Save mosufy/e7159d22f5339b37a627 to your computer and use it in GitHub Desktop.
VBC SDK PHP Usage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'vendor/autoload.php'; | |
$config = [ | |
'AppKey' => '', // Get from VBC | |
'SecretKey' => '', // Get from VBC | |
'Version' => 'V2' | |
]; | |
// instantiate the required objects | |
$client = new Vbc\Client($config); | |
$request = new Vbc\Request($client); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment