4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Google URL Shortenerで短縮URL生成

Last updated at Posted at 2017-11-01

追記

Google URL Shortenerでの短縮URL生成は2019/03/30にサービス終了しました。


手軽に生成したい場合

  • 以下を利用すればOK

  • https://goo.gl/

  • でも、複数生成したい場合は都度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'

参考

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?