အကောင်းဆုံးအခမဲ့ URL အတိုချုံးခြင်း
ရှင်းလင်း, အမြဲတမ်းတို URL ကိုသို့အရှည်လျားသောလင့်ခ်ကိုတိုတောင်း - အခမဲ့, မှတ်ပုံတင်ခြင်းမရှိ, မခြေရာခံ.
လုပ်ဆောင်ပုံ
- URL ကို ရေးသားပါ. တိုစေလိုသော URL အရှည်ကို ထည့်သွင်းပါ။
- အတိုချုံးပါ. Shorten ကိုနှိပ်ပါနှင့်သင်၏ URL ကို redirects သော compact link ကိုဖန်တီးထားသည်။
- ကူးယူပြီး မျှဝေပါ. short link ကို copy လုပ်ပြီး ဘယ်နေရာမှာမဆို အသုံးပြုနိုင်ပါတယ် - သက်တမ်းကုန်ဆုံးခြင်းမရှိပါ
ကိရိယာအကြောင်း
URL Shortener မျှဝေဖို့လွယ်ကူတဲ့ဖြစ်ပါတယ်သောတိုတောင်းသောတစ်ခုသို့ရှည်လျားသော, မလွယ်ကူသော link ကိုပြောင်းပြန်, အမျိုးအစားသို့မဟုတ်ပုံနှိပ်. URL ကို paste လုပ်ပါနှင့်သင်သည်သင်၏ရည်မှန်းချက်ပန်းတိုင်သို့တိုက်ရိုက် redirects သော compact link ကိုပြန်ရ. တိုတောင်းတဲ့ link များကိုသက်တမ်းကုန်ဆုံးခြင်းမရှိပါနှင့် trackers နှင့်အတူ loaded နေကြသည်မဟုတ် - သူတို့ကသင်သူတို့ကိုညွှန်ပြနေရာသို့ရိုးရှင်းစွာရှေ့ဆက်. တည်ဆောက်ရန်အကောင့်မရှိပါနှင့်မ dashboard ကိုစီမံခန့်ခွဲဖို့; ဒါဟာမြန်ဆန်, သင်ကပို့မတိုင်မီ link ကိုရှင်းလင်းဖို့ no-friction နည်းလမ်းဖြစ်ပါတယ်.
လူတွေဘာအတွက်သုံးပါသလဲ
- စာမပို့မီ မျှဝေရန် ကြိုးရှည်ကို ရှင်းလင်းပါ
- လင့်ခ်ကို ပျံသန်းမှုတစ်ခုတွင် ပုံနှိပ်ရန် လုံလောက်စွာတိုစေပါ
- ဆိုးဝါးသော ခြေရာခံမှု URL ကို ရှင်းလင်းသော URL ဖြင့် အစားထိုးပါ
- အခြားနည်းဖြင့် အဆင်မပြေစွာ လည်ပတ်နိုင်သော နက်နက်ရှိုင်းရှိုင်း လင့်ခ်ကို မျှဝေပါ
ဖန်တီးသူ API
သင့်ရဲ့ကိုယ်ပိုင် code ကိုမှဤ tool ကို Automate. အောက်ပါ endpoint ကို POST ကိုတောင်းဆိုချက်ကိုပို့ပြီး web tool ကိုထုတ်လုပ်အလားတူရလဒ်ကိုရယူ. ဒါဟာ IP ကိုတစ်ဦးနှုန်း-limited ဖြစ်ပါတယ်နှင့် signup မရှိလိုအပ်ပါသည် - မြင့်မားသောကန့်သတ်များအတွက် API ကို key ကိုလာကြပြီ.
https://best.free/api/tools/url-shortener/
| သတ်မှတ်ချက် | နမူနာ | လိုအပ်သည် | မှတ်စုများ |
|---|---|---|---|
url |
https://example.com/a/very/long/path |
အင်း | The destination URL. |
curl -X POST https://best.free/api/tools/url-shortener/ \
-H 'Content-Type: application/json' \
-d '{"url": "https://example.com/a/very/long/path"}'
import requests
r = requests.post(
"https://best.free/api/tools/url-shortener/",
json={"url": "https://example.com/a/very/long/path"},
)
print(r.json())
const r = await fetch("https://best.free/api/tools/url-shortener/", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ url: "https://example.com/a/very/long/path" }),
});
const data = await r.json();
console.log(data);
တုံ့ပြန်မှု: JSON with the short URL in "short_url".
{"ok": true, "short_url": "https://best.free/s/Ab3xZ9", "code": "Ab3xZ9"}