Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/setdjod/blogger-api-now
Blogger API Zeit Now
https://github.com/setdjod/blogger-api-now
blogger blogger-api zeit zeit-nodejs zeit-now
Last synced: 17 days ago
JSON representation
Blogger API Zeit Now
- Host: GitHub
- URL: https://github.com/setdjod/blogger-api-now
- Owner: setdjod
- Created: 2019-06-26T19:04:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T20:19:35.000Z (almost 2 years ago)
- Last Synced: 2024-07-30T21:07:53.059Z (3 months ago)
- Topics: blogger, blogger-api, zeit, zeit-nodejs, zeit-now
- Language: JavaScript
- Homepage: https://blogger-api.now.sh
- Size: 547 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Blogger API Zeit Now
Based from [blogger-api](https://github.com/setdjod/blogger-api)
## Table of Contents
- [Setup](#setup)
- [Running localy](#run-localy)
- [Get All Label](#all-label)
- [Get Spesific Label](#spesific-label)
- [Get All Pages](#all-pages)
- [Get Spesific Pages](#spesific-pages)
- [Get All Posts](#all-posts)
- [Get Spesific Posts](#spesific-posts)## Setup
```bash
npm install
```## Run Localy
```bash
npm run dev
```## Now Environment Variables and Secrets
```bash
# Default or you can change it
now -e NODE_ENV="development"
now -e API_URL="https://www.blogger.com/feeds"
now -e BLOG_ID="6732289991114793651"
```## All Label
- Production:
| Query | Type | Default | Description |
| ------------- |:----------------:| :------:| - |
| blogid | number | - | - |
| order | enum (asc, desc) | asc | - |
| limit | number | 5 | - |
| pages | number | 1 | - |## Spesific Label
- Production:
| Query | Type | Default | Description |
| ------------- |:-------------------------:| :--------:| - |
| blogid | number | - | - |
| order | enum (published, updated) | published | - |
| limit | number | 5 | - |
| pages | number | 1 | - |
| updated_min | date iso 8601 | null | - |
| updated_max | date iso 8601 | null | - |
| published_min | date iso 8601 | null | - |
| published_max | date iso 8601 | null | - |## All Pages
- Production:
| Query | Type | Default | Description |
| ------------- |:-------------------------:| :--------:| - |
| blogid | number | - | - |
| order | enum (published, updated) | published | - |
| limit | number | 5 | - |
| pages | number | 1 | - |
| updated_min | date iso 8601 | null | - |
| updated_max | date iso 8601 | null | - |
| published_min | date iso 8601 | null | - |
| published_max | date iso 8601 | null | - |## Spesific Pages
- Production:
| Query | Type | Default | Description |
| ------------- |:-------------------------:| :--------:| - |
| blogid | number | - | - |
| isjson | boolean | false | - |## All Posts
- Production:
| Query | Type | Default | Description |
| ------------- |:-------------------------:| :--------:| - |
| blogid | number | - | - |
| order | enum (published, updated) | published | - |
| limit | number | 5 | - |
| pages | number | 1 | - |
| updated_min | date iso 8601 | null | - |
| updated_max | date iso 8601 | null | - |
| published_min | date iso 8601 | null | - |
| published_max | date iso 8601 | null | - |## Spesific Posts
- Production:
| Query | Type | Default | Description |
| ------------- |:-------------------------:| :--------:| - |
| blogid | number | - | - |
| isjson | boolean | false | - |