照片收藏
金色童年
收藏、取消收藏照片
Method and URL Structure
Method |
Resource URL |
POST |
/photograph/collect/${photograph pk}/ |
DELETE |
/photograph/collections/remove/${photograph pk}/ |
cURL Example
curl -X POST -H 'Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b'\
-H 'Content-Type: Application/json' http://localhost/photograph/collect/\$\$photograph pk\}/
Reponse
{
"pk":1,
"collection":12,
"photograph":{
"pk":24,
"title":"xiaoming's photo",
"desc":"南柯郡汶汶乡大槐树",
"file_url":"http://www.example.com/1.jpg",
"taken_date":"2016-07-01",
"author":"布可朔夫",
"created":"2016-10-26T20:30:34.964312",
"albums":[{
"album":"27",
"name":"未分类",
"created":"2016-10-26T20:30:34.951501"
}]
}
}
收藏列表
Method and URL Structure
Method |
Resource URL |
GET |
/photograph/collections/ |
cURL Example
curl -X POST -H 'Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b'\
-H 'Content-Type: Application/json' http://localhost/photograph/collections/
Reponse
{
"count":1,
"next":null,
"previous":null,
"results":[{
"pk":1,
"collection":12,
"photograph":{
"pk":24,
"title":"xiaoming's photo",
"desc":"南柯郡汶汶乡大槐树",
"file_url":"http://www.example.com/1.jpg",
"taken_date":"2016-07-01",
"author":"布可朔夫",
"created":"2016-10-26T20:32:51.450770",
"albums":[{
"album":"27",
"name":"未分类",
"created":"2016-10-26T20:32:51.437680"
}]
}
}....]
}