diff --git a/apps/jingrow/jingrow/api/local_app_installer.py b/apps/jingrow/jingrow/api/local_app_installer.py index ec2f10f..b37b1a4 100644 --- a/apps/jingrow/jingrow/api/local_app_installer.py +++ b/apps/jingrow/jingrow/api/local_app_installer.py @@ -1009,23 +1009,6 @@ async def get_app_detail(app_name: str): raise HTTPException(status_code=500, detail=f"获取应用详情失败: {str(e)}") -@router.get("/jingrow/app-marketplace-meta") -async def get_app_meta(): - """获取Local App元数据""" - try: - url = f"{get_jingrow_cloud_url()}/api/action/jcloud.api.local_app.get_local_app_meta" - - headers = get_jingrow_cloud_api_headers() - response = requests.get(url, headers=headers, timeout=20) - - if response.status_code == 200: - data = response.json() - return data.get('message') - else: - raise HTTPException(status_code=500, detail="获取元数据失败") - except Exception as e: - raise HTTPException(status_code=500, detail=f"获取元数据失败: {str(e)}") - @router.get("/jingrow/my-published-apps") async def get_my_published_apps(