function GetOrderData($id_order)
{
$weepayArray = array();
$weepayArray['Auth'] = array(
'bayiId' => $this->weepay_payment_bayi_id,
'apiKey' => $this->weepay_payment_bayi_api,
'secretKey' => $this->weepay_payment_bayi_secret,
);
$weepayArray['Data'] = array(
'paymentId' => $id_order,
);
eğer dediğin yer burasıysa burada secret veriyor işte
secret key değil hocam order id den bahsediyoruz kod şöyle olmalı yani
function GetOrderData($id_order, $orderId)
{
$weepayArray = array();
$weepayArray['Auth'] = array(
'bayiId' => $this->weepay_payment_bayi_id,
'apiKey' => $this->weepay_payment_bayi_api,
'secretKey' => $this->weepay_payment_bayi_secret,
);
$weepayArray['Data'] = array(
'paymentId' => $id_order,
'orderId' => $orderId // Posttan gelen order id yi de göndermeli
);