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
| { | |
| "data": [ | |
| { | |
| "tag": "SHIPPING_UPDATE", | |
| "description": "The shipping_update tag may only be used to provide a shipping status notification for a product that has already been purchased. For example, when the product is shipped, in-transit, delivered, or delayed. This tag cannot be used for use cases beyond those listed above or for promotional content (ex: daily deals, coupons and discounts, or sale announcements)." | |
| }, | |
| { | |
| "tag": "RESERVATION_UPDATE", | |
| "description": "The reservation_update tag may only be used to confirm updates to an existing reservation. For example, when there is a change in itinerary, location, or a cancellation (such as when a hotel booking is canceled, a car rental pick-up time changes, or a room upgrade is confirmed). This tag cannot be used for use cases beyond those listed above or for promotional content (ex: daily deals, coupons and discounts, or sale announcements)." | |
| }, |
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
| {"entry": [{"changes": [{"field": "feed", "value": {"item": "comment", "sender_name": "xxx", "comment_id": "xxx", "sender_id": xxx, "post_id": "xxx", "verb": "add", "parent_id": "xxx", "created_time": xxx, "post": {"type": "status", "updated_time": "xxx", "promotion_status": "xxx", "permalink_url": "xxx", "id": "xxx", "status_type": "xxx", "is_published": true}, "message": "xxx"}}], "id": "xxx", "time": xxx}], "object": "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
| const puppeteer = require('puppeteer'); | |
| const merge = require('merge-img'); | |
| const pageUrl = ''; // REPLACE ME | |
| const pageElement = '#svgcanvas'; // REPLACE ME | |
| (async() => { | |
| const browser = await puppeteer.launch(); | |
| const page = await browser.newPage(); | |
| await page.goto(pageUrl); |