1
Google URL Shortener的API可以爲一個長URL提供多個Short URLs嗎?Google URL Shortener的API可以爲一個長URL提供多個Short URLs嗎?
我發現,如果我這樣做:
curl https://www.googleapis.com/urlshortener/v1/url \
-H 'Content-Type: application/json' \
-d '{"longUrl": "http://www.google.com"}'
它總是輸出相同的短網址:
{
"kind": "urlshortener#url",
"id": "http://goo.gl/fbsS",
"longUrl": "http://www.google.com/"
}
我的意思是在谷歌API的參考 –