最近の検索


最近の検索はありません

Robert Pearman's Avatar

Robert Pearman

参加日2021年5月28日

·

前回のアクティビティ2021年10月16日

フォロー中

0

フォロワー

0

合計アクティビティ

4

投票

0

サブスクリプション

1

アクティビティの概要

さんの最近のアクティビティ Robert Pearman

Robert Pearmanさんがコメントを作成しました:

コミュニティのコメント Developer - Zendesk APIs

Made some progress by omitting, $fileBinary = [System.Convert]::ToBase64String($fileContentBytes) and just sending the bytes.

コメントを表示 · 投稿日時:2021年1月14日 · Robert Pearman

0

フォロワー

0

投票

0

コメント


Robert Pearmanさんがコメントを作成しました:

コミュニティのコメント Developer - Zendesk APIs

Just to say i have confirmed it is the base64 string that becomes the content of the text file.

コメントを表示 · 投稿日時:2021年1月14日 · Robert Pearman

0

フォロワー

0

投票

0

コメント


Robert Pearmanさんが投稿を作成しました:

投稿 Developer - Zendesk APIs

I have read a lot of the posts about this subject but not quite gotten the answer i need.

I am using PowerShell to upload files to ZenDesk, i have it working for the most part. The file is uploaded and i can link it to a ticket.

The problem i have is the content of the file remains as the base64 string, i guess i have something wrong somewhere?

$fileName = "C:\myfolder\outputlog.log"
$shortFileName = "outputlog.log"
$fileUploadURL = ($uploadURL, "filename=$shortFileName" -join "?")
$fileContent = Get-Content $filename
$fileContentBytes = [System.Text.Encoding]::Unicode.GetBytes($fileContent)
$fileBinary = [System.Convert]::ToBase64String($fileContentBytes)
Invoke-WebRequest -Uri $fileUploadURL -Headers $headers -Method post -ContentType "application/binary" -Body $fileBinary

StatusCode        : 201
StatusDescription : Created

Also tried this, $fileBinary = [Convert]::ToBase64String((Get-Content -Path $fileName -Encoding Byte)) with the same result.

 

 

投稿日時:2021年1月14日 · Robert Pearman

0

フォロワー

1

投票

2

コメント