bitly APIを叩くshellscript
2713 ワード
bitlyとは
URLを圧縮してくれるサービスです。
手順
bitlyアカウント作成
token作成
shellscript作成
実行
bitlyアカウント作成
下記よりアカウント作成。
token作成
ユーザー情報が表示されている箇所を選択
Generic Access Token
を選択
tokenが生成されるのでメモしておいてください
shellscript作成
#test_shフォルダ作成
mkdir test_sh
#test_sh/に移動
cd test_sh/
#bit.sh作成
touch bit.sh
#パーミッション変更
chmod 755 bit.sh
エディターは何でもいいの bit.sh
編集します
vim bit.sh
bit.shのソース下記です。
#!/bin/sh
BASEURL="https://api-ssl.bitly.com/v3/shorten?access_token="
access_token="作成したtoken"
curl -i -X GET $BASEURL$access_token"&longUrl="$1
実行
sh bit.sh https://codeworks.site/
実行結果
{"status_code":200,"status_txt":"OK","data":{"url":"http://bit.ly/2Yj4PHC","hash":"2Yj4PHC","global_hash":"2Yj4PY8","long_url":"https://codeworks.site/","new_hash":1}}
urlが圧縮されたものが生成されています。
Author And Source
この問題について(bitly APIを叩くshellscript), 我々は、より多くの情報をここで見つけました https://qiita.com/taichi0514/items/adebe3e12de0a8ba294d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .