The typical use is:
{@code Urlshortener urlshortener = new Urlshortener(...);}{@code Urlshortener.Url.List request = urlshortener.url().list(parameters ...)}
127128129130131132133134135136137
// URLの設定 Url url = new Url(); url.setLongUrl("http://plucial.com/u/" + userModel.getKey().getName() + "/a/" +activityModel.getKey().getName()); // 短縮URLの発行 url = urlshortener.url().insert(url).execute(); return url.getId(); } /**