podio-js
Version:
Podio Platform JavaScript SDK for NodeJS and the browser
26 lines (18 loc) • 428 B
Markdown
# 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