Defines.php 391 B

12345678910111213141516171819
  1. <?php
  2. /* 服务型APP Key */
  3. $appkey = "";
  4. /* 服务性secret */
  5. $secret = "";
  6. /* 自用型AppKey */
  7. $oneself_appkey = "";
  8. /* 自用型Secret */
  9. $oneself_secret = "";
  10. define ( 'API_HOST', 'https://api.vdian.com/' );
  11. /* 微店API */
  12. define ( 'WD_API', API_HOST . 'api' );
  13. /* DEBUG模式 */
  14. define ( 'DEBUG', FALSE );
  15. /* 在线模式-不会输出额外信息 */
  16. define ( 'ON_LINE', FALSE );