コード例 #1
0
ファイル: Unbxd.php プロジェクト: unbxd/php-sdk
 /**
  * Configure Unbxd Client. This method should be called while initializing you application.
  * If you don't know the configuration details please get in touch with support@unbxd.com
  *
  * @param siteKey The Unique Identifier for Site created on Unbxd Platform
  * @param apiKey API key for calling read APIs
  * @param secretKey API key for calling Feed APIs
  */
 public static function configure($siteKey, $apiKey, $secretKey = FALSE)
 {
     self::$siteKey = $siteKey;
     self::$apiKey = $apiKey;
     self::$secretKey = $secretKey;
     self::$_configured = TRUE;
 }