Url Skill
🤖 AI Integration Guide: Send this page link to AI for automatic integration guidance
Quick Information
- Application Type: Url (Web Application)
- Skill Version: 1.0.0
- Integration Difficulty: ⭐ (Easy)
- Estimated Time: 5 minutes
🎯 Integration Steps
Step 1: Install SDK
Using TypeScript as an example:
bash
npm install @toolsetlink/upgradelink-api-typescriptStep 2: Initialize Configuration
typescript
import { Client, Config } from '@toolsetlink/upgradelink-api-typescript';
const config = new Config({
accessKey: 'YOUR_ACCESS_KEY',
accessSecret: 'YOUR_ACCESS_SECRET',
});
const client = new Client(config);Step 3: Get Upgrade Information
typescript
import { UrlUpgradeRequest } from '@toolsetlink/upgradelink-api-typescript';
const request = new UrlUpgradeRequest({
urlKey: 'YOUR_URL_KEY',
versionCode: 1,
});
const response = await client.UrlUpgrade(request);
console.log('Latest version:', response.data.versionName);
console.log('Download URL:', response.data.downloadUrl);⚠️ Note: Replace placeholders with your actual keys
🤖 AI Integration
Send this page link to AI:
Please help me integrate web application version detection, here's the Skill link:
https://www.toolsetlink.com/en/upgrade/skill/urlAI will automatically:
- Identify the application type as Url
- Retrieve configuration information and code examples
- Guide you to replace placeholders
- Verify configuration correctness
- Complete integration testing
📋 Complete Example
View complete example project: typescript-demo
❓ FAQ
Q: How to get URL Key?
A: Log in to UpgradeLink dashboard, create a URL application to obtain it.
Q: How to get Access Key and Access Secret?
A: Log in to UpgradeLink dashboard, obtain them from the key management page.
Q: Which programming languages are supported?
A: Supports TypeScript/JavaScript, Python, Go, Java, C#, and more.