Services_Ebay
[ class tree: Services_Ebay ] [ index: Services_Ebay ] [ all elements ]

Source for file config.php

Documentation is available at config.php

  1. <?PHP
  2. $devId  '';
  3.  
  4. $appId  '';
  5.  
  6. $certId '';
  7.  
  8. $username '';
  9.  
  10. $password '';
  11.  
  12. $token '';
  13.  
  14. if ($devId === ''{
  15.     if (file_exists('config-local.php')) {
  16.         require_once 'config-local.php';
  17.     }
  18. }
  19. if ($devId === ''{
  20.     
  21.     echo 'In order to use Services_Ebay, you must specify devId, appId, certId and a token.<br />';
  22.     echo 'Please register at <a href="http://developer.ebay.com">http://developer.ebay.com</a> to get this IDs and then modify examples/config.php<br />';
  23.     exit();
  24. }
  25. ?>

Documentation generated on Mon, 11 Mar 2019 15:49:46 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.