我創建了一個使用LocomotiveCMS的網站,我創建了兩種稱爲照片和圖庫的內容類型,這些內容類型有一個關係,以便我可以在我的網站上創建圖像庫。如何通過機車CMS創建新的內容條目CMS RESTful API
我目前正在尋找使用RESTful API來爲照片創建多個內容條目,因爲它穿過一個文件。
我可以連接到API,沒有問題,修改網站等
我會假設,一個新的內容條目捲曲命令將採取以下形式:
curl -X POST -d 'photo[image_id]=blah&photo[gallery]=1234&photo[file]=<filepath>photo[published]=true' 'http://<your site>/locomotive/api/current_site.json?auth_token=xxxx'
不過我我不確定如何通過這個命令傳遞一個文件,我現在已經替換了這個文件,你會如何編寫這個部分?
我字段設置爲圖片如下:
fields:
- image_id:
label: Image ID
type: string
required: true
localized: false
- file: # Name of the field
label: File
type: file
required: true
localized: false
- gallery: # Name of the field
label: Gallery
type: belongs_to
required: true
localized: false
# Slug of the target content type (eg post if this content type is a comment)
class_name: gallery