# Podio Server Auth

A simple example app for server-side authentication against the Platform API.

# Installation

```
npm install
```

Make sure to add your client ID and client secret in a new file ```./config.json```. It should have the following format:
```
{
  "clientId": "<Your client ID>",
  "clientSecret": "<Your client secret>"
}
```

# Server

```
npm start
```

The app is accessible through http://localhost:3000
