LoginSignup
3
4

More than 5 years have passed since last update.

Googleのサービスを利用して短縮URLを得る

Posted at

おぼえがき

参考

https://developers.google.com/url-shortener/v1/getting_started?hl=ja

APIKeyの発行

  1. プロジェクトを作成
  2. ライブラリから"URL Shortener API"を選択
  3. 認証情報からAPIKeyを作成

短縮URLの作成

https://www.googleapis.com/urlshortener/v1/url?key={APIKey}
メソッド:POST
ヘッダ:Content-Type: application/json
ボディ:{"longUrl":"{短縮したいURL}"}

にアクセスすると
レスポンスが
json
{
"kind": "urlshortener#url",
"id": "{短縮URL}",
"longUrl": "{短縮したいURL}"
}

になるので、短縮URLでアクセスすれば元のURLにリダイレクトされる。

3
4
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
3
4