autoit / KSeF / Inicjalizacja sesji, wskazanie kontekstu, uwierzytelnienie i autoryzacja
Back to Collection Items
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
$oHttp = ObjCreate("Chilkat.Http")
Local $bSuccess
$oBdRequestBody = ObjCreate("Chilkat.BinData")
$bSuccess = $oBdRequestBody.LoadFile("file")
If ($bSuccess <> True) Then
ConsoleWrite("Failed to load file" & @CRLF)
Exit
EndIf
$oHttp.SetRequestHeader "Accept","application/json"
Local $oResp = $oHttp.PBinaryBd("POST","https://ksef.mf.gov.pl/api/online/Session/InitToken",$oBdRequestBody,"application/octet-stream",False,False)
If ($oHttp.LastMethodSuccess = False) Then
ConsoleWrite($oHttp.LastErrorText & @CRLF)
Exit
EndIf
$oSbResponseBody = ObjCreate("Chilkat.StringBuilder")
$oResp.GetBodySb($oSbResponseBody)
$oJResp = ObjCreate("Chilkat.JsonObject")
$oJResp.LoadSb($oSbResponseBody)
$oJResp.EmitCompact = False
ConsoleWrite("Response Body:" & @CRLF)
ConsoleWrite($oJResp.Emit() & @CRLF)
Local $iRespStatusCode = $oResp.StatusCode
ConsoleWrite("Response Status Code = " & $iRespStatusCode & @CRLF)
If ($iRespStatusCode >= 400) Then
ConsoleWrite("Response Header:" & @CRLF)
ConsoleWrite($oResp.Header & @CRLF)
ConsoleWrite("Failed." & @CRLF)
Exit
EndIf
; Sample JSON response:
; (Sample code for parsing the JSON response is shown below)
; {
; "referenceNumber": "28201005-FY-586FD2AD02-40A998FD15-B2",
; "sessionToken": {
; "context": {
; "contextIdentifier": {
; "type": "<string>"
; },
; "credentialsRoleList": [
; {
; "startTimestamp": "<dateTime>",
; "type": "<string>",
; "roleDescription": "<string>",
; "roleType": {}
; }
; ],
; "contextName": {
; "type": "<string>",
; "tradeName": "<string>"
; }
; },
; "token": "<string>"
; },
; "timestamp": "<dateTime>"
; }
; Sample code for parsing the JSON response...
; Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
Local $startTimestamp
Local $sV_type
Local $sRoleDescription
Local $sReferenceNumber = $oJResp.StringOf("referenceNumber")
Local $sV_Type = $oJResp.StringOf("sessionToken.context.contextIdentifier.type")
Local $sContextNameType = $oJResp.StringOf("sessionToken.context.contextName.type")
Local $sTradeName = $oJResp.StringOf("sessionToken.context.contextName.tradeName")
Local $sToken = $oJResp.StringOf("sessionToken.token")
Local $sTimestamp = $oJResp.StringOf("timestamp")
Local $i = 0
Local $iCount_i = $oJResp.SizeOfArray("sessionToken.context.credentialsRoleList")
While $i < $iCount_i
$oJResp.I = $i
$startTimestamp = $oJResp.StringOf("sessionToken.context.credentialsRoleList[i].startTimestamp")
$sV_type = $oJResp.StringOf("sessionToken.context.credentialsRoleList[i].type")
$sRoleDescription = $oJResp.StringOf("sessionToken.context.credentialsRoleList[i].roleDescription")
$i = $i + 1
Wend
Curl Command
curl -X POST
-H "Content-Type: application/octet-stream"
-H "Accept: application/json"
--data-binary '@file'
https://ksef.mf.gov.pl/api/online/Session/InitToken
Postman Collection Item JSON
{
"name": "Inicjalizacja sesji, wskazanie kontekstu, uwierzytelnienie i autoryzacja",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/octet-stream"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "file",
"file": {}
},
"url": {
"raw": "{{baseUrl}}/online/Session/InitToken",
"host": [
"{{baseUrl}}"
],
"path": [
"online",
"Session",
"InitToken"
]
},
"description": "Inicjalizacja sesji interaktywnej. Zaszyfrowany kluczem publicznym KSeF dokument http://ksef.mf.gov.pl/schema/gtw/svc/online/auth/request/2021/10/01/0001/InitSessionTokenRequest"
},
"response": [
{
"name": "Inicjalizacja sesji interaktywnej poprawna",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/octet-stream"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "file",
"file": {}
},
"url": {
"raw": "{{baseUrl}}/online/Session/InitToken",
"host": [
"{{baseUrl}}"
],
"path": [
"online",
"Session",
"InitToken"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"referenceNumber\": \"28201005-FY-586FD2AD02-40A998FD15-B2\",\n \"sessionToken\": {\n \"context\": {\n \"contextIdentifier\": {\n \"type\": \"<string>\"\n },\n \"credentialsRoleList\": [\n {\n \"startTimestamp\": \"<dateTime>\",\n \"type\": \"<string>\",\n \"roleDescription\": \"<string>\",\n \"roleType\": {}\n }\n ],\n \"contextName\": {\n \"type\": \"<string>\",\n \"tradeName\": \"<string>\"\n }\n },\n \"token\": \"<string>\"\n },\n \"timestamp\": \"<dateTime>\"\n}"
},
{
"name": "Nieprawidłowe wywołanie",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/octet-stream"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "file",
"file": {}
},
"url": {
"raw": "{{baseUrl}}/online/Session/InitToken",
"host": [
"{{baseUrl}}"
],
"path": [
"online",
"Session",
"InitToken"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"exception\": {\n \"exceptionDetailList\": [\n {\n \"exceptionCode\": \"<integer>\",\n \"exceptionDescription\": \"<string>\"\n }\n ],\n \"serviceCode\": \"<string>\",\n \"serviceCtx\": \"<string>\",\n \"serviceName\": \"<string>\",\n \"timestamp\": \"<dateTime>\",\n \"referenceNumber\": \"20560508-TX-BC1107E227-31DE9417C0-CE\"\n }\n}"
}
]
}