Per regionCode
.
- Film & Animation
- Autos & Vehicles
- Music
- Pets & Animals
- Sports
- Short Movies
"use strict"; | |
var fs = require("fs"); | |
var path = require("path"); | |
var dir = "./export"; | |
let count = fs.readdirSync(dir) | |
// we only want channel sub-directories | |
.filter(file => fs.statSync(path.join(dir, file)).isDirectory()) |
[ | |
{ | |
"id": "1", | |
"title": "Film & Animation" | |
}, | |
{ | |
"id": "2", | |
"title": "Autos & Vehicles" | |
}, | |
{ |
{ | |
"zxx": "Not applicable", | |
"ab": "Abkhazian", | |
"aa": "Afar", | |
"af": "Afrikaans", | |
"sq": "Albanian", | |
"ase": "American Sign Language", | |
"am": "Amharic", | |
"ar": "Arabic", | |
"arc": "Aramaic", |
{ | |
"AF": "Afghanistan", | |
"AX": "Aland Islands", | |
"AL": "Albania", | |
"DZ": "Algeria", | |
"AS": "American Samoa", | |
"AD": "Andorra", | |
"AO": "Angola", | |
"AI": "Anguilla", | |
"AQ": "Antarctica", |
curl -u "[email protected]:xyz123mypassword" -X POST "https://api-ssl.bitly.com/oauth/access_token" |
curl -X POST \ | |
https://api-ssl.bitly.com/v4/bitlinks \ | |
-H 'Authorization: Bearer ad7ecf6cd10e8f072651f00cf90e2bc983a4a974' \ | |
-H 'Content-Type: application/json' \ | |
-d '{ | |
"group_guid": "B99h99pjymR", | |
"long_url": "https://www.relatable.me/case-studies" | |
}' |
cat links.txt | xargs -n 1 -I{} \ | |
curl -s -X POST \ | |
https://api-ssl.bitly.com/v4/bitlinks \ | |
-H 'Authorization: Bearer ad7ecf6cd10e8f072651f00cf90e2bc983a4a974' \ | |
-H 'Content-Type: application/json' \ | |
-d '{ "group_guid": "B99h99pjymR", "long_url": "{}" }' \ | |
2>&1 | jq -r '. | "\(.long_url)\t\(.link)"' |
curl -X GET \ | |
https://api-ssl.bitly.com/v4/bitlinks/bit.ly%2F2Km4Nro/clicks/summary \ | |
-H 'Authorization: Bearer ad7ecf6cd10e8f072651f00cf90e2bc983a4a974' |