Simple Yii2 component to short URL or expand URL using google API Url Shortener.
- create folder components in your yii2
- move GoogleShortUrl.php into components folder
- add component class to config/main.php configuration file
....
'components' => [
'google' => [
'class' => 'app\components\GoogleShortUrl'
],
.......
];
....
Short Url:
return Yii::$app->google->shortUrl('http://google.com');
Expand shorten Url:
return Yii::$app->google->expandUrl('https://goo.gl/FuAUYl');
- Documentation for Google URL Shortener API: https://developers.google.com/url-shortener/
- Register Api Key: https://console.developers.google.com/apis/