Move miniflux.net to HTTPS
This commit is contained in:
parent
f89ed85a83
commit
14600c602d
@ -25,7 +25,7 @@ Under the web user interface of Miniflux, go to the menu **preferences**, scroll
|
|||||||
|
|
||||||
You must have these information:
|
You must have these information:
|
||||||
|
|
||||||
- API endpoint: `https://miniflux.net/[username]/jsonrpc.php`
|
- API endpoint: `https://username.miniflux.net/jsonrpc.php`
|
||||||
- API username: `username`
|
- API username: `username`
|
||||||
- API token: `swB3/nSo1CB1X2F` (random token)
|
- API token: `swB3/nSo1CB1X2F` (random token)
|
||||||
|
|
||||||
@ -47,7 +47,7 @@ Examples
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "feed.create", "params": {"url": "http://images.apple.com/main/rss/hotnews/hotnews.rss"}, "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "feed.create", "params": {"url": "http://images.apple.com/main/rss/hotnews/hotnews.rss"}, "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Success output:
|
Success output:
|
||||||
@ -70,7 +70,7 @@ Here is an example to fetch all bookmarks.
|
|||||||
```php
|
```php
|
||||||
use JsonRPC\Client;
|
use JsonRPC\Client;
|
||||||
|
|
||||||
$client = new Client('https://miniflux.net/demo/jsonrpc.php');
|
$client = new Client('https://demo.miniflux.net/jsonrpc.php');
|
||||||
$client->authentication('demo', 'swB3/nSo1CB1X2F');
|
$client->authentication('demo', 'swB3/nSo1CB1X2F');
|
||||||
|
|
||||||
$result = $client->execute('item.bookmark.list');
|
$result = $client->execute('item.bookmark.list');
|
||||||
@ -122,7 +122,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "app.version", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "app.version", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -151,7 +151,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "feed.list", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "feed.list", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -212,7 +212,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "feed.info", "params": {"feed_id": 1}, "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "feed.info", "params": {"feed_id": 1}, "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -250,7 +250,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "feed.create", "params": {"url": "http://images.apple.com/main/rss/hotnews/hotnews.rss"}, "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "feed.create", "params": {"url": "http://images.apple.com/main/rss/hotnews/hotnews.rss"}, "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -273,7 +273,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "feed.delete", "params": {"feed_id": 5}, id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "feed.delete", "params": {"feed_id": 5}, id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -299,7 +299,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "feed.delete_all", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "feed.delete_all", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -325,7 +325,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "feed.update", "params": {"feed_id": 1}, id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "feed.update", "params": {"feed_id": 1}, id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -351,7 +351,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.feed.list", "params": {"feed_id": 1}, id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.feed.list", "params": {"feed_id": 1}, id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -401,7 +401,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.feed.count", "params": {"feed_id": 1}, "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.feed.count", "params": {"feed_id": 1}, "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -427,7 +427,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.bookmark.list", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.bookmark.list", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -467,7 +467,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.bookmark.count", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.bookmark.count", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -493,7 +493,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.bookmark.create", "params": {"item_id": "1fd17ad3"}, "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.bookmark.create", "params": {"item_id": "1fd17ad3"}, "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -519,7 +519,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.bookmark.delete", "params": {"item_id": "1fd17ad3"}, "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.bookmark.delete", "params": {"item_id": "1fd17ad3"}, "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -545,7 +545,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.list_unread", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.list_unread", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -585,7 +585,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.count_unread", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.count_unread", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -611,7 +611,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.list_read", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.list_read", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -650,7 +650,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.count_read", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.count_read", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -675,7 +675,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.info", "params": {"item_id": "bcc94722"}, "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.info", "params": {"item_id": "bcc94722"}, "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -711,7 +711,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.delete", "params": {"item_id": "bcc94722"}, "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.delete", "params": {"item_id": "bcc94722"}, "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -737,7 +737,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.mark_as_read", "params": {"item_id": "1fd17ad3"}, "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.mark_as_read", "params": {"item_id": "1fd17ad3"}, "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -763,7 +763,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.mark_as_read", "params": {"item_id": "1fd17ad3"}, "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.mark_as_read", "params": {"item_id": "1fd17ad3"}, "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -788,7 +788,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.flush", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.flush", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -814,7 +814,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.mark_all_as_read", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.mark_all_as_read", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -840,7 +840,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.set_list_status", "params": {"status": "unread", "items": ["1fd17ad3", "bcc94722"]}, "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.set_list_status", "params": {"status": "unread", "items": ["1fd17ad3", "bcc94722"]}, "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -865,7 +865,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.get_all", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.get_all", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -905,7 +905,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.get_all_status", "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.get_all_status", "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
@ -942,7 +942,7 @@ Request:
|
|||||||
curl \
|
curl \
|
||||||
-u "demo:swB3/nSo1CB1X2F" \
|
-u "demo:swB3/nSo1CB1X2F" \
|
||||||
-d '{"jsonrpc": "2.0", "method": "item.get_all_since", "params": {"timestamp": 1392467820}, "id": 1}' \
|
-d '{"jsonrpc": "2.0", "method": "item.get_all_since", "params": {"timestamp": 1392467820}, "id": 1}' \
|
||||||
https://miniflux.net/demo/jsonrpc.php
|
https://demo.miniflux.net/jsonrpc.php
|
||||||
```
|
```
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
|
@ -19,17 +19,17 @@
|
|||||||
</div>
|
</div>
|
||||||
<section>
|
<section>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="http://miniflux.net/documentation/installation" rel="noreferrer" target="_blank"><?= t('Installation instructions') ?></a></li>
|
<li><a href="https://miniflux.net/documentation/installation" rel="noreferrer" target="_blank"><?= t('Installation instructions') ?></a></li>
|
||||||
<li><a href="http://miniflux.net/documentation/upgrade" rel="noreferrer" target="_blank"><?= t('Upgrade to a new version') ?></a></li>
|
<li><a href="https://miniflux.net/documentation/upgrade" rel="noreferrer" target="_blank"><?= t('Upgrade to a new version') ?></a></li>
|
||||||
<li><a href="http://miniflux.net/documentation/cronjob" rel="noreferrer" target="_blank"><?= t('Cronjob') ?></a></li>
|
<li><a href="https://miniflux.net/documentation/cronjob" rel="noreferrer" target="_blank"><?= t('Cronjob') ?></a></li>
|
||||||
<li><a href="http://miniflux.net/documentation/config" rel="noreferrer" target="_blank"><?= t('Advanced configuration') ?></a></li>
|
<li><a href="https://miniflux.net/documentation/config" rel="noreferrer" target="_blank"><?= t('Advanced configuration') ?></a></li>
|
||||||
<li><a href="http://miniflux.net/documentation/full-article-download" rel="noreferrer" target="_blank"><?= t('Full article download') ?></a></li>
|
<li><a href="https://miniflux.net/documentation/full-article-download" rel="noreferrer" target="_blank"><?= t('Full article download') ?></a></li>
|
||||||
<li><a href="http://miniflux.net/documentation/multiple-users" rel="noreferrer" target="_blank"><?= t('Multiple users') ?></a></li>
|
<li><a href="https://miniflux.net/documentation/multiple-users" rel="noreferrer" target="_blank"><?= t('Multiple users') ?></a></li>
|
||||||
<li><a href="http://miniflux.net/documentation/themes" rel="noreferrer" target="_blank"><?= t('Themes') ?></a></li>
|
<li><a href="https://miniflux.net/documentation/themes" rel="noreferrer" target="_blank"><?= t('Themes') ?></a></li>
|
||||||
<li><a href="http://miniflux.net/documentation/json-rpc-api" rel="noreferrer" target="_blank"><?= t('Json-RPC API') ?></a></li>
|
<li><a href="https://miniflux.net/documentation/json-rpc-api" rel="noreferrer" target="_blank"><?= t('Json-RPC API') ?></a></li>
|
||||||
<li><a href="http://miniflux.net/documentation/fever" rel="noreferrer" target="_blank"><?= t('Fever API') ?></a></li>
|
<li><a href="https://miniflux.net/documentation/fever" rel="noreferrer" target="_blank"><?= t('Fever API') ?></a></li>
|
||||||
<li><a href="http://miniflux.net/documentation/translations" rel="noreferrer" target="_blank"><?= t('Translations') ?></a></li>
|
<li><a href="https://miniflux.net/documentation/translations" rel="noreferrer" target="_blank"><?= t('Translations') ?></a></li>
|
||||||
<li><a href="http://miniflux.net/documentation/docker" rel="noreferrer" target="_blank"><?= t('Run Miniflux with Docker') ?></a></li>
|
<li><a href="https://miniflux.net/documentation/docker" rel="noreferrer" target="_blank"><?= t('Run Miniflux with Docker') ?></a></li>
|
||||||
<li><a href="http://miniflux.net/documentation/faq" rel="noreferrer" target="_blank"><?= t('FAQ') ?></a></li>
|
<li><a href="https://miniflux.net/documentation/faq" rel="noreferrer" target="_blank"><?= t('FAQ') ?></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
Loading…
Reference in New Issue
Block a user