最近の検索
最近の検索はありません

Will Ryan
参加日2021年4月15日
·
前回のアクティビティ2023年3月14日
フォロー中
0
フォロワー
0
合計アクティビティ
7
投票
2
受信登録
2
アクティビティの概要
バッジ
記事
投稿
コミュニティへのコメント
記事へのコメント
アクティビティの概要
さんの最近のアクティビティ Will Ryan
Will Ryanさんがコメントを作成しました:
コミュニティのコメント Developer - Zendesk APIs
This is the only thing that would work for me. If i didn't do it like this, a blank image was appearing in the response:
$fileName = 'test.png';
$filePath = 'test.png';
$url = 'https://test.zendesk.com/api/v2/uploads.json?filename=' . urlencode($fileName);
$file = fopen($filePath, "r");
$mimeContentType = mime_content_type($file);
$size = filesize($filePath);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER ,true);
curl_setopt($ch, CURLOPT_POST ,true);
curl_setopt($ch, CURLOPT_POSTFIELDS, file_get_contents($filePath));
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-type: {$mimeContentType}"));
curl_setopt($ch, CURLOPT_VERBOSE, true);
curl_setopt($ch, CURLOPT_USERPWD, "test@test.com/token:XXXXXXXXXXXXXXXXXXX");
$output = curl_exec($ch);
$code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
fclose($file);
curl_close($ch);
コメントを表示 · 投稿日時:2023年3月14日 · Will Ryan
0
フォロワー
0
投票
0
コメント
Will Ryanさんがコメントを作成しました:
コミュニティのコメント Feedback - Ticketing system (Support)
Unfortunately, Zendesk appears to have lost any focus on responding to customer needs. This feature is rather simple, lots of people want it, but still, requests are simply ignored.
I have two existing clients on Zendesk, and if it weren't a complete nightmare, I'd migrate them to one of Zedesk's more agile competitors. For new clients, I do not use Zendesk.
コメントを表示 · 投稿日時:2021年1月06日 · Will Ryan
0
フォロワー
1
投票
0
コメント