Skip to content

Commit bc87763

Browse files
committed
update
1 parent 755c269 commit bc87763

4 files changed

Lines changed: 14 additions & 289 deletions

File tree

components/api/Summary.vue

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ async function getAuthKey() {
3232
<p class="text-rose-500 font-medium mt-3">
3333
注意:目前接入 API 免费,后续会根据实际情况动态调整,不排除会改为收费模式。
3434
</p>
35-
<p class="text-rose-500 font-medium mt-1">
36-
该功能仍在测试阶段,函数签名及认证方式等都有可能发生变化,请时刻关注更新。
37-
</p>
35+
<p class="text-rose-500 font-medium mt-1">如果你的调用量比较大的话,推荐进行私有部署。</p>
3836

3937
<UAlert class="mt-10 mb-3">
4038
<template #title>
@@ -46,12 +44,12 @@ async function getAuthKey() {
4644

4745
<template #description>
4846
<ol class="list-decimal pl-5 text-base">
49-
<li>
50-
<p>
51-
由于微信公众号本身的限制,密钥有效期最长为 4 天,且只能通过
52-
<span class="text-rose-500 font-medium">微信扫码</span> 获取。
53-
</p>
54-
</li>
47+
<!-- <li>-->
48+
<!-- <p>-->
49+
<!-- 由于微信公众号本身的限制,密钥有效期最长为 4 天,且只能通过-->
50+
<!-- <span class="text-rose-500 font-medium">微信扫码</span> 获取。-->
51+
<!-- </p>-->
52+
<!-- </li>-->
5553
<li>
5654
<p>以下所有 <code>API</code> 如无特殊说明,均需要携带密钥进行调用。密钥可通过以下两种方式传输:</p>
5755
<p>a. 通过自定义请求头 <code class="text-rose-500 font-medium font-mono">X-Auth-Key</code></p>

components/dashboard/NavMenus.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const items = ref<NavItem[]>([
1414
{ name: '文章下载', icon: 'i-lucide:file-down', href: '/dashboard/article' },
1515
{ name: '合集下载', icon: 'i-lucide:library-big', href: '/dashboard/album' },
1616
{ name: '公共代理', icon: 'i-lucide:globe', href: '/dashboard/proxy' },
17-
{ name: 'API', icon: 'i-lucide:cable', href: '/dashboard/api', tags: ['内测'] },
17+
{ name: 'API', icon: 'i-lucide:cable', href: '/dashboard/api' },
1818
{ name: '变更记录', icon: 'i-lucide:clock', href: '/dashboard/changelog' },
1919
{ name: '设置', icon: 'i-lucide:settings', href: '/dashboard/settings' },
2020
{ name: '技术支持 & 赞助', icon: 'i-lucide:heart-handshake', href: '/dashboard/support' },

config/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ export const apis = [
293293
},
294294
},
295295
{
296-
name: '获取文章内容 (开发中)',
296+
name: '获取文章内容',
297297
description: '获取文章内容,支持 html / markdown / text 格式',
298298
url: '/api/public/v1/download',
299299
method: 'GET',

0 commit comments

Comments
 (0)