1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- set_include_path(
- get_include_path()
- . PATH_SEPARATOR
- . realpath(dirname(__FILE__) . '/../')
- );
- require_once 'Services/Soundcloud.php';
- class Services_Soundcloud_Expose extends Services_Soundcloud {
-
- function __construct($clientId, $clientSecret, $redirectUri = null, $development = false) {
- parent::__construct($clientId, $clientSecret, $redirectUri, $development);
- }
-
- function buildDefaultHeaders() {
- return $this->_buildDefaultHeaders();
- }
-
- function buildUrl($path, $params = null, $includeVersion = true) {
- return $this->_buildUrl($path, $params, $includeVersion);
- }
-
- function getUserAgent() {
- return $this->_getUserAgent();
- }
-
- function parseHttpHeaders($headers) {
- return $this->_parseHttpHeaders($headers);
- }
-
- function validResponseCode($code) {
- return $this->_validResponseCode($code);
- }
- }
|