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 "Authorization","{{partner_resource_authorization_header}}"
Local $oResp = $oHttp.PBinaryBd("PUT","https://domain.com/",$oBdRequestBody,"{{partner_resource_mimeType}}",False,False)
If ($oHttp.LastMethodSuccess = False) Then
ConsoleWrite($oHttp.LastErrorText & @CRLF)
Exit
EndIf
ConsoleWrite($oResp.StatusCode & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)
Curl Command
curl -X PUT
-H "Authorization: {{partner_resource_authorization_header}}"
-H "Content-Type: {{partner_resource_mimeType}}"
--data-binary '@file'
https://domain.com/
Postman Collection Item JSON
{
"name": "Stream Resource",
"_postman_id": "94addbd1-0de1-43f5-b53e-2dc7306e407e",
"request": {
"method": "PUT",
"header": [
{
"key": "Authorization",
"value": "{{partner_resource_authorization_header}}",
"type": "text"
},
{
"key": "Content-Type",
"value": "{{partner_resource_mimeType}}",
"type": "text"
}
],
"body": {
"mode": "file",
"file": {
"src": ""
}
},
"url": "{{partner_resource_location}}"
},
"response": [
]
}