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
{ | |
"info": { | |
"_postman_id": "97b1358c-d027-4284-b3d4-ecce3a7e88e7", | |
"name": "Sticitt Host-to-Host API", | |
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", | |
"_exporter_id": "44945686" | |
}, | |
"item": [ | |
{ | |
"name": "1. Retrieve access token", |
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 cors = require('cors') | |
const express = require('express'); | |
const { json, urlencoded } = require('express'); | |
const { path } = require('fs') | |
const app = express() | |
const port = 8080 | |
app.use(cors()) | |
app.use(json()) // for parsing application/json | |
app.use(urlencoded({ extended: true })) // for parsing application/x-www-form-urlencoded |
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
class Program | |
{ | |
[Flags] | |
public enum PizzaToppings | |
{ | |
Cheese = 1, | |
Bacon = 1 << 1, | |
Avo = 1 << 2, | |
Pineapple = 1 << 3, | |
Mushrooms = 1 << 4, |