Periscope 2

node v4.9.1
version: 1.0.0
endpointsharetweet
// Let's get a list of 360 videos on Periscope console.log("Let's get a list of 360 videos on Periscope with Node " + process.version); const got = require("got"); // By default, we'll get the string (which is what you asked for) const result = await got.post("https://api.periscope.tv/api/v2/broadcastSearchPublic", { body: JSON.stringify({ search: "360", include_replay: true }) }); result.body
Loading…

no comments

    sign in to comment