-
Notifications
You must be signed in to change notification settings - Fork 726
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bruno is a lightweight alternative to Postman/Insomnia. - https://www.usebruno.com - https://github.com/usebruno/bruno
- Loading branch information
Showing
44 changed files
with
995 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
miniflux-* | ||
miniflux | ||
./miniflux | ||
*.rpm | ||
*.deb | ||
.idea | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
This folder contains Miniflux API collection for [Bruno](https://www.usebruno.com). | ||
|
||
Bruno is a lightweight alternative to Postman/Insomnia. | ||
|
||
- https://www.usebruno.com | ||
- https://github.com/usebruno/bruno |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
meta { | ||
name: Bookmark an entry | ||
type: http | ||
seq: 37 | ||
} | ||
|
||
put { | ||
url: {{minifluxBaseURL}}/v1/entries/{{entryID}}/bookmark | ||
body: none | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"feed_url": "https://miniflux.app/feed.xml" | ||
} | ||
} | ||
|
||
vars:pre-request { | ||
entryID: 1698 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
meta { | ||
name: Create a feed | ||
type: http | ||
seq: 19 | ||
} | ||
|
||
post { | ||
url: {{minifluxBaseURL}}/v1/feeds | ||
body: json | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"feed_url": "https://miniflux.app/feed.xml" | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
meta { | ||
name: Create a new category | ||
type: http | ||
seq: 10 | ||
} | ||
|
||
post { | ||
url: {{minifluxBaseURL}}/v1/categories | ||
body: json | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"title": "Test" | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
meta { | ||
name: Create a new user | ||
type: http | ||
seq: 5 | ||
} | ||
|
||
post { | ||
url: {{minifluxBaseURL}}/v1/users | ||
body: json | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"username": "foobar", | ||
"password": "secret123" | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
meta { | ||
name: Delete a category | ||
type: http | ||
seq: 12 | ||
} | ||
|
||
delete { | ||
url: {{minifluxBaseURL}}/v1/categories/{{categoryID}} | ||
body: none | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"title": "Test Update" | ||
} | ||
} | ||
|
||
vars:pre-request { | ||
categoryID: 1 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
meta { | ||
name: Delete a feed | ||
type: http | ||
seq: 26 | ||
} | ||
|
||
delete { | ||
url: {{minifluxBaseURL}}/v1/feeds/{{feedID}} | ||
body: none | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"user_agent": "My user agent" | ||
} | ||
} | ||
|
||
vars:pre-request { | ||
feedID: 18 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
meta { | ||
name: Delete a user | ||
type: http | ||
seq: 7 | ||
} | ||
|
||
delete { | ||
url: {{minifluxBaseURL}}/v1/users/{{userID}} | ||
body: none | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"language": "fr_FR" | ||
} | ||
} | ||
|
||
vars:pre-request { | ||
userID: 2 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
meta { | ||
name: Discover feeds | ||
type: http | ||
seq: 18 | ||
} | ||
|
||
post { | ||
url: {{minifluxBaseURL}}/v1/discover | ||
body: json | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"url": "https://miniflux.app" | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
meta { | ||
name: Fetch entry website content | ||
type: http | ||
seq: 39 | ||
} | ||
|
||
get { | ||
url: {{minifluxBaseURL}}/v1/entries/{{entryID}}/fetch-content | ||
body: none | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"feed_url": "https://miniflux.app/feed.xml" | ||
} | ||
} | ||
|
||
vars:pre-request { | ||
entryID: 1698 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
meta { | ||
name: Flush history | ||
type: http | ||
seq: 40 | ||
} | ||
|
||
put { | ||
url: {{minifluxBaseURL}}/v1/flush-history | ||
body: none | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"url": "https://miniflux.app" | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
meta { | ||
name: Get a single entry | ||
type: http | ||
seq: 36 | ||
} | ||
|
||
get { | ||
url: {{minifluxBaseURL}}/v1/entries/{{entryID}} | ||
body: none | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"feed_url": "https://miniflux.app/feed.xml" | ||
} | ||
} | ||
|
||
vars:pre-request { | ||
entryID: 1698 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
meta { | ||
name: Get a single feed entry | ||
type: http | ||
seq: 33 | ||
} | ||
|
||
get { | ||
url: {{minifluxBaseURL}}/v1/feeds/{{feedID}}/entries/{{entryID}} | ||
body: none | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"feed_url": "https://miniflux.app/feed.xml" | ||
} | ||
} | ||
|
||
vars:pre-request { | ||
feedID: 19 | ||
entryID: 1698 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
meta { | ||
name: Get a single feed | ||
type: http | ||
seq: 24 | ||
} | ||
|
||
get { | ||
url: {{minifluxBaseURL}}/v1/feeds/{{feedID}} | ||
body: none | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
body:json { | ||
{ | ||
"feed_url": "https://miniflux.app/feed.xml" | ||
} | ||
} | ||
|
||
vars:pre-request { | ||
feedID: 18 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
meta { | ||
name: Get a single user by ID | ||
type: http | ||
seq: 3 | ||
} | ||
|
||
get { | ||
url: {{minifluxBaseURL}}/v1/users/{{userID}} | ||
body: none | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
vars:pre-request { | ||
userID: 1 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
meta { | ||
name: Get a single user by username | ||
type: http | ||
seq: 4 | ||
} | ||
|
||
get { | ||
url: {{minifluxBaseURL}}/v1/users/{{username}} | ||
body: none | ||
auth: basic | ||
} | ||
|
||
auth:basic { | ||
username: {{minifluxUsername}} | ||
password: {{minifluxPassword}} | ||
} | ||
|
||
vars:pre-request { | ||
username: admin | ||
} |
Oops, something went wrong.