This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
request headers in ios: | |
GET /graphql | |
Accept: */* | |
Content-Type: application/json | |
Origin: https://prismic-graphql-pagination.netlify.app | |
Referer: https://prismic-graphql-pagination.netlify.app/all-posts | |
User-Agent: Mozilla/5.0 (iPad; CPU OS 12_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1 | |
Prismic-ref: XuDzRxAAACMAedKh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const getAllPages = (allData, endCursor) => | |
getPage(endCursor) | |
.then(response => { | |
if (response.pageInfo.hasNextPage) { | |
return getAllPages(response.edges, response.edges.cursor) | |
.then(nextPage => allData.push(nextPage)) | |
} else { | |
return allData | |
} | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
install XAMPP | |
https://www.apachefriends.org/index.html | |
install composer | |
https://getcomposer.org/download/ | |
run composer in project root | |
php composer.phar install | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# In case of 'unlisted' target, only passing 'publishTarget' as a request header works | |
if [[ ${PUBLISH_TARGET} == 'unlisted' ]]; then | |
HTTP_CODE=$(curl \ | |
-w %{http_code} \ | |
-o api-response.json \ | |
-H "Authorization: Bearer $ACCESS_TOKEN" \ | |
-H "x-goog-api-version: 2" \ | |
-H "Content-Length: 0" \ | |
-H "publishTarget: $PUBLISH_TARGET" \ | |
-X POST \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"swagger": "2.0", | |
"info": { | |
"version": "1.0.0", | |
"title": "beta-dot-ao-docs-staging.appspot.com" | |
}, | |
"host": "beta-dot-ao-docs-staging.appspot.com", | |
"basePath": "/_ah/api", | |
"schemes": [ | |
"https" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sdfsdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.route('/:uid').get(function(req, res){ | |
var uid = req.params['uid'] | |
var p = prismic.withContext(req, res); | |
p.getByUID('page', uid, function(err, page) { | |
if(err) { | |
res.status(500) | |
.send("Error 500: " + err.message); | |
} | |
if(!page) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Content" : { | |
"body" : { | |
"fieldset" : "Dynamic page zone...", | |
"type" : "Slices", | |
"config" : { | |
"choices" : { | |
"featured-items" : { | |
"type" : "Group", | |
"fieldset" : "Featured items", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Blog Post" : { | |
"uid" : { | |
"type" : "UID", | |
"config" : { | |
"placeholder" : "unique-identifier-for-blog-post-url" | |
} | |
}, | |
"body" : { | |
"fieldset" : "Post content", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Content" : { | |
"body" : { | |
"fieldset" : "Dynamic page zone...", | |
"type" : "Slices", | |
"config" : { | |
"choices" : { | |
"alternated-highlights" : { | |
"type" : "Group", | |
"fieldset" : "Alternated highlights", |
NewerOlder