Ricerche recenti


Nessuna ricerca recente

Will Ryan's Avatar

Will Ryan

Data ingresso 15 apr 2021

·

Ultima attività 14 mar 2023

Seguiti

0

Follower

0

Attività totali

7

Voti

2

Abbonamenti

2

PANORAMICA ATTIVITÀ

Ultima attività di Will Ryan

Will Ryan ha commentato,

Commento nella community 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);

Visualizza commento · Data ultimo post: 14 mar 2023 · Will Ryan

0

Follower

0

Voti

0

Commenti


Will Ryan ha commentato,

Commento nella community 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.

Visualizza commento · Data ultimo post: 06 gen 2021 · Will Ryan

0

Follower

1

Voto

0

Commenti


Will Ryan ha commentato,

Commento nella community Feedback - Ticketing system (Support)

This to me seems like a pretty basic feature. Surprised it hasn't been implemented.

Visualizza commento · Data ultimo post: 29 giu 2018 · Will Ryan

0

Follower

5

Voti

0

Commenti