podio-js
Version:
Podio Platform JavaScript SDK for NodeJS and the browser
28 lines (20 loc) • 512 B
Markdown
# Podio Password Auth
A simple example app for password authentication against the Platform API.
# Installation
```
npm install
```
Make sure to add your client ID, client secret, username and password in a new file ```./config.json```. It should have the following format:
```
{
"clientId": "<Your client ID>",
"clientSecret": "<Your client secret>",
"username": "<Your username>",
"password": "<Your password"
}
```
# Server
```
npm start
```
The app is accessible through http://localhost:3000