28 lines
1.3 KiB
PHP
28 lines
1.3 KiB
PHP
<div class="page-header">
|
|
<h2><?= t('API') ?></h2>
|
|
<ul>
|
|
<li><a href="?action=config"><?= t('settings') ?></a></li>
|
|
<li><a href="?action=about"><?= t('about') ?></a></li>
|
|
<li><a href="?action=help"><?= t('help') ?></a></li>
|
|
</ul>
|
|
</div>
|
|
<section>
|
|
<div class="alert alert-normal">
|
|
<h3 id="fever"><?= t('Fever API') ?></h3>
|
|
<ul>
|
|
<li><?= t('Link:') ?> <strong><?= Helper\get_current_base_url().'fever/' ?></strong></li>
|
|
<li><?= t('Username:') ?> <strong><?= Helper\escape($config['username']) ?></strong></li>
|
|
<li><?= t('Password:') ?> <strong><?= Helper\escape($config['fever_token']) ?></strong></li>
|
|
</ul>
|
|
</div>
|
|
<div class="alert alert-normal">
|
|
<h3 id="api"><?= t('Miniflux API') ?></h3>
|
|
<ul>
|
|
<li><?= t('API endpoint:') ?> <strong><?= Helper\get_current_base_url().'jsonrpc.php' ?></strong></li>
|
|
<li><?= t('API username:') ?> <strong><?= Helper\escape($config['username']) ?></strong></li>
|
|
<li><?= t('API token:') ?> <strong><?= Helper\escape($config['api_token']) ?></strong></li>
|
|
<li><a href="?action=generate-tokens&csrf=<?= $csrf ?>"><?= t('Generate new tokens') ?></a></li>
|
|
</ul>
|
|
</div>
|
|
</section>
|