3D Secure Sonuç Sorgulama (Get 3D Session Result)
3D doğrulama işleminin sonucunun sorgulanması amacıyla kullanılır. 3D doğrulama sonucunun başarılı olduğu (isSuccessed = true ve currentStep = VerificationFinished) görüldükten sonra provizyon isteğine oluşturulan sessionId değeri eklenerek servis çağrılacaktır.
POSThttps://testpfapi.rubikpara.com/v1/ThreeDS/getthreedsessionresult
Headers
ClientIpAddress array[string]
ConversationId string
MerchantNumber string
Nonce string
PublicKey string
Signature string
ConversationId string
MerchantNumber string
Nonce string
PublicKey string
Signature string
Body
uyarı
Burada kullanılacak olan threeDSessionId değerini "3D Secure Doğrulama" servisinin sonucundan almalısınız.
{
"threeDSessionId": "string",
"languageCode": "string"
}
Response
Body
{
"isSucceed": "boolean",
"errorCode": "string",
"errorMessage": "string",
"conversationId": "string",
"currentStep": "string",
"mdStatus": "string",
"mdErrorMessage": "string",
"halfSecure": "boolean"
}
Örnek Kodlar
- Axios
- Java
- PHP
- C#
- Go
- Python
- cURL
const axios = require('axios').default; const options = { method: 'POST', url: 'https://testpfapi.rubikpara.com/v1/ThreeDS/getthreedsessionresult', headers: { PublicKey: 'SkDP+k0jpMPDOzjcQ2dTcg==', Nonce: '', Signature: '', ConversationId: 'test123456', ClientIpAddress: '192.1.1.1', MerchantNumber: '1100000001', 'Content-Type': 'application/json', Accept: 'application/json' }, data: {threeDSessionId: ''/*3D Doğrulama Servisinden alınacak*/, languageCode: 'TR'} }; try { const { data } = await axios.request(options); console.log(data); } catch (error) { console.error(error); }
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{
"threeDSessionId": "",// 3D Doğrulama Servisinden alınacak
"languageCode": "TR"
}");
Request request = new Request.Builder()
.url("https://testpfapi.rubikpara.com/v1/threeds/getthreedsessionresult")
.method("POST", body)
.addHeader("publicKey", "SkDP+k0jpMPDOzjcQ2dTcg==")
.addHeader("nonce", "")
.addHeader("signature", "")
.addHeader("conversationId", "test123456")
.addHeader("clientIpAddress", "192.1.1.1")
.addHeader("merchantNumber", "1100000001")
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://testpfapi.rubikpara.com/v1/ThreeDS/getthreedsessionresult",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'threeDSessionId' => '',// 3D Doğrulama Servisinden alınacak
'languageCode' => 'TR'
]),
CURLOPT_HTTPHEADER => [
"Accept: application/json",
"ClientIpAddress: 192.1.1.1",
"Content-Type: application/json",
"ConversationId: test123456",
"MerchantNumber: 1100000001",
"Nonce: ",
"PublicKey: SkDP+k0jpMPDOzjcQ2dTcg==",
"Signature: "
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Post,
RequestUri = new Uri("https://testpfapi.rubikpara.com/v1/ThreeDS/getthreedsessionresult"),
Headers =
{
{ "PublicKey", "SkDP+k0jpMPDOzjcQ2dTcg==" },
{ "Nonce", "" },
{ "Signature", "" },
{ "ConversationId", "test123456" },
{ "ClientIpAddress", "192.1.1.1" },
{ "MerchantNumber", "1100000001" },
{ "Accept", "application/json" },
},
Content = new StringContent("{
"threeDSessionId": "",// 3D Doğrulama Servisinden alınacak
"languageCode": "TR"
}")
{
Headers =
{
ContentType = new MediaTypeHeaderValue("application/json")
}
}
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://testpfapi.rubikpara.com/v1/ThreeDS/getthreedsessionresult"
payload := strings.NewReader("{
"threeDSessionId": "",// 3D Doğrulama Servisinden alınacak
"languageCode": "TR"
}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("PublicKey", "SkDP+k0jpMPDOzjcQ2dTcg==")
req.Header.Add("Nonce", "")
req.Header.Add("Signature", "")
req.Header.Add("ConversationId", "test123456")
req.Header.Add("ClientIpAddress", "192.1.1.1")
req.Header.Add("MerchantNumber", "1100000001")
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Accept", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import http.client
conn = http.client.HTTPSConnection("https://testpfapi.rubikpara.com")
payload = "{
"threeDSessionId": "",// 3D Doğrulama Servisinden alınacak
"languageCode": "TR"
}"
headers = {
'PublicKey': "SkDP+k0jpMPDOzjcQ2dTcg==",
'Nonce': "",
'Signature': "",
'ConversationId': "test123456",
'ClientIpAddress': "192.1.1.1",
'MerchantNumber': "1100000001",
'Content-Type': "application/json",
'Accept': "application/json"
}
conn.request("POST", "v1/ThreeDS/getthreedsessionresult", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
curl --request POST --url https://testpfapi.rubikpara.com/v1/ThreeDS/getthreedsessionresult --header 'Accept: application/json' --header 'ClientIpAddress: 192.1.1.1' --header 'Content-Type: application/json' --header 'ConversationId: test123456' --header 'MerchantNumber: 1100000001' --header 'Nonce: ' --header 'PublicKey: SkDP+k0jpMPDOzjcQ2dTcg==' --header 'Signature: ' --data '{
"threeDSessionId": "",// 3D Doğrulama Servisinden alınacak
"languageCode": "TR"
}'