追記
Google URL Shortenerでの短縮URL生成は2019/03/30にサービス終了しました。
手軽に生成したい場合
-
以下を利用すればOK
-
でも、複数生成したい場合は都度reCAPTCHAしなければならず非常に面倒
reCAPTHA回避して複数生成したい場合
- curlでAPIにリクエスト投げましょう
shortener.sh
# !/bin/bash
api_key="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
url=$1
curl -s -X POST \
-H 'Content-Type: application/json' \
-d "{\"longUrl\": \"${url}\"}" \
"https://www.googleapis.com/urlshortener/v1/url?key=${api_key}" | jq -r '.id'
- APIキーは以下から取得してください
- https://developers.google.com/url-shortener/v1/getting_started#APIKey
参考