我正在使用zohocrm wso2esb连接器。
这里我尝试使用zohocrm esb连接器中提供的process_group()
{
group="$1"
find . -maxdepth 1 -type f -iname "${group}-*.jpg" \
-exec identify -format '%[fx:w*h] : %f\n' {} \; | \
awk -F: '{ printf("%d :%s\n", $1, $2); }' | \
sort -n -r | head -3 | \
while read line; do
file="${line#*: *}"
echo "$file"
done
}
find . -maxdepth 1 -type f -regex '.*jpg$' -printf "%f\n" | \
while read file ; do
echo "${file%-*}"
done | sort | uniq | while read group ; do
process_group "$group"
done
操作上传文件,在此操作中我提供uploadFile
,apiUrl
,{{1} },accessToken
和scope
。
问题在于,我不清楚在moduleType
字段中提供哪个id
,还在上传文件操作中如何以及在何处附加文件(将在zohocrm中上传)。