forked from contentstack/contentstack-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
90 lines (64 loc) · 2.16 KB
/
index.js
File metadata and controls
90 lines (64 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
'use strict'
const ContentstackDemo = require('./contentstack-demo.js')
const Demo = new ContentstackDemo({ 'api_key': 'blt3095c4e04a3d69e6', 'access_token': 'bltd4c70163cb65d8e2', 'environment': 'development', 'web_ui_api_key': '607a456d7f3afc20cd9fcb1f' })
// Demo
// .getEntries('home_reference')
// .then(function(result) {
// // result object with entry
// console.info("Result2 : ", typeof result)
// //console.info("Result2 : ", JSON.stringify(result))
// })
// .catch(function(err) {
// // error of get entry
// console.error("Fetch Error :", err)
// })
//get all the entries
Demo.getSyncApi({'init': 'true'})
.then(function(result) {
// result object with entries
console.info("Result: ", result)
})
.catch(function(err) {
// error of get all entries
console.error("Find Error :", err)
})
// // get single asset
// Demo
// .getAsset('bltsomething123')
// .then(function(result) {
// // result object with entry
// console.info("Result2 : ", result)
// })
// .catch(function(err) {
// // error of get entry
// console.error("Fetch Error :", err)
// })
// // get all assets
// Demo
// .getAssets()
// .spread(function(result) {
// // result object with entry
// console.info("Result2 : ", result)
// for (let i = 0, _i = result.length; i < _i; i++) {
// // Image optimization
// const imgUrl = Demo.Stack.imageTransform(result[i]['url'], {
// quality: 50,
// format: 'jpg'
// })
// console.log("Image URL : ", imgUrl)
// }
// })
// .catch(function(err) {
// // error of get entry
// console.error("getAssets Fetch Error :", err)
// })
// get all assets
// Demo
// .getSyncApi({"sync_token": "blt123something"})
// .then(function(result) {
// console.log("result", JSON.stringify(result))
// })
// .catch(function(err) {
// // error of get entry
// console.error("getSync Fetch Error :", err)
// })