簡體   English   中英

Zoho mail php 集成中的 INVALID_TICKET

[英]INVALID_TICKET in Zoho mail php Integration

我正在使用 zoho email 發送 email。但是當嘗試使用以下代碼發送 email 時,它返回錯誤invalid_ticket

$data = array(

   "fromAddress"=> "from@gmail.com",
   "toAddress"=> "receive@gmail.com",
   "subject"=> "Email - Always and Forever",
   "content"=> "Email can never be dead. The most neutral and effective way, that can be used for one to many and two way communication.",
   "askReceipt" => "yes"
);


// Convert the PHP array into a JSON format

$payload = json_encode($data);

// Initialise new cURL session

$ch = curl_init('https://mail.zoho.in/api/accounts/<user_id>/messages');

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Content-Type: application/json',   
    'Content-Length: ' . strlen($payload))
);

$result = curl_exec($ch);

print_r($result);
curl_close($ch);

?>

請幫我解決這個問題。 謝謝

這不是解決此問題的正確論壇,但根據官方文檔,您需要Kindly regenerate the authtoken with that generated authtoken which will work fine.

來源: https://help.zoho.com/portal/en/community/topic/zoho-cretor-getting-error-message-invalid-ticket-id-code-4834-when-trying-to-insert-records- in-zoho-crm

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM