下载图片
目的
下载与模块相关联的图片。
请求URL
https://www.zohoapis.com.cn/crm/v2/{module_api_name}/{record_id}/photo
module_api_name - 模块的API名称
record_id - 记录的唯一ID
支持的模块 |
---|
线索,联系人,客户,产品,供货商和自定义模块 |
请求方法
GET
范围
scope=ZohoCRM.modules.all
(或)
scope=ZohoCRM.modules.{module_name}.{operation_type}
可能的模块名称 | 可能的操作类型 |
---|---|
线索,联系人,客户,产品,供货商和自定义模块 | ALL - 完全访问图片 READ - 获取图片数据 |
示例请求
所需要的图片将从记录ID为3000000038009的线索中下载。
curl "https://www.zohoapis.com.cn/crm/v2/Leads/3000000038009/photo"
-X GET
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"
示例请求
ZCRMRecord record = ZCRMRecord.getInstance("Contacts",123456l);//模块API名称和记录ID
FileAPIResponse response = record.downloadPhoto();
InputStream inputStream = response.getFileAsStream();
CommonUtil.saveStreamAsFile(inputStream, "/absolute/path/to/store/file", response.getFileName());
示例请求
try{
$record=ZCRMRecord::getInstance(“Leads”,”410405000001111007”);
$fileResponseIns=$record->downloadPhoto();
echo "HTTP Status Code:".$fileResponseIns->getHttpStatusCode();
echo "File Name:".$fileResponseIns->getFileName();
$fp=fopen($filePath.$fileResponseIns->getFileName(),"w"); // $filePath - 下载照片存储的绝对路径。
$stream=$fileResponseIns->getFileContent();
fputs($fp,$stream);
fclose($fp);
}catch(ZCRMException $e)
{
echo $e->getCode();
echo $e->getMessage();
echo $e->getExceptionCode();
}
示例请求
def download_photo(self):
try:
record=ZCRMRecord.get_instance('Leads',1386586000001856002)
resp=record.download_photo()
print resp.response_headers
if resp.status_code==200:
print resp.file_name
with open('/Users/Downloads/'+resp.file_name, 'wb') as f:
for chunk in resp.response:
f.write(chunk)
f.close()
except ZCRMException as ex:
print ex.status_code
print ex.error_message
print ex.error_code
print ex.error_details
print ex.error_content
示例请求
ZCRMRecord recordIns = ZCRMRecord.GetInstance("Leads", 3372164000001632020); //包含记录ID的模块API名称
FileAPIResponse response = recordIns.DownloadPhoto();
Stream photoStream = response.GetFileAsStream();
CommonUtil.SaveStreamAsFile("/Desktop/test", photoStream, response.GetFileName());