Example #1
0
 public function doAuthOnly($request)
 {
     $json = json_encode($this->object_unset_nulls(null));
     echo $json;
     curl_setopt($request, CURLOPT_POSTFIELDS, $json);
     $result = $this->doPost($request, $this->getUrl());
     $response = AuthorizationResponseInformation::fromArray($result);
     return $response;
 }
 /**
  * Perform a new query that retrieves you the list of Authorizations Information.
  *
  * @return an AuthorizationResponseInformation list object.
  * @see {@link com.payhub.ws.api.AuthorizationResponseInformation};
  */
 public function getAllAuthOnlyInformation()
 {
     //List<SaleResponseInformation> response = new ArrayList<SaleResponseInformation>();
     $url = $this->getUrl() . AuthOnly::$AUTH_ID_LINK;
     $request = $this->setHeadersGet($url, $this->_oauthToken);
     $result = $this->doGet($request);
     if (array_key_exists('_embedded', $result)) {
         foreach ($result['_embedded']['authonlys'] as $authonlies) {
             $response_tmp = AuthorizationResponseInformation::fromArray($authonlies);
             $response_tmp->setTransactionManager($this);
             $response[] = $response_tmp;
         }
         return $response;
     } else {
         $errors_tmp = new Errors();
         foreach ($result as $errorData) {
             $errors_tmp = Errors::fromArray($errorData);
         }
         $errors[] = $errors_tmp;
         return $errors;
     }
 }
 /**
  * Perform a new query that retrieves you the list of Authorizations Information.
  *
  * @return an AuthorizationResponseInformation list object.
  * @see {@link com.payhub.ws.api.AuthorizationResponseInformation};
  */
 public function getAllAuthOnlyInformation()
 {
     //List<SaleResponseInformation> response = new ArrayList<SaleResponseInformation>();
     $url = $this->getUrl() . AuthOnly::$AUTH_ID_LINK;
     $request = $this->setHeadersGet($url, $this->_oauthToken);
     $result = $this->doGet($request);
     //var_dump($result);
     foreach ($result['_embedded']['authonlys'] as $authonlies) {
         $response_tmp = AuthorizationResponseInformation::fromArray($authonlies);
         $response_tmp->setTransactionManager($this);
         $response[] = $response_tmp;
     }
     return $response;
 }