긴 URL을 단축, 확장, 분석하는 데 도움이 되는 프로젝트인 Google URL Shortener API 라이브러리의 홈에 오신 것을 환영합니다.
goo.gl의 Google URL Shortener는 긴 URL을 가져와서 더 적은 문자로 압축하여 친구와 쉽게 공유하거나 트윗하거나 이메일로 보낼 수 있는 링크를 만드는 서비스입니다. Google URL Shortener API를 사용하면 이 서비스와 인터페이스하는 애플리케이션을 개발할 수 있습니다. 간단한 HTTP 방법을 사용하여 데스크톱, 모바일 또는 웹 애플리케이션에서 goo.gl 단축 URL을 생성, 검사, 관리할 수 있습니다.
참조 : http://code.google.com/intl/zh-TW/apis/urlshortener/
http://getsparks.org/packages/google-url-shortener/versions/HEAD/show에서 추천해 주세요.
이 사이트에서 모든 파일을 다운로드하세요.
$ https://[email protected]/appleboy/CodeIgniter-Google-URL-Shortener-API.git
$ git clone git://github.com/appleboy/CodeIgniter-Google-URL-Shortener-API.git
파일을 codeigniter 응용 프로그램 디렉터리 내의 해당 위치로 이동합니다.
$ copy config/google_url_api.php your_application/config/
$ copy controller/google_url.php your_application/controller/
$ copy libraries/Google_url_api.php your_application/libraries/
config/google_url_api.php 파일을 열고 단축 API 키를 구성하세요.
$config['google_api_key'] = "xxxxx";
컨트롤러 파일 테스트: google_url.php
http://localhost/google_url/
문제가 있는 경우 컨트롤러 코드에서 디버깅을 활성화하세요.
$this->google_url_api->enable_debug(TRUE);
Copyright (C) 2011 Bo-Yi Wu ( appleboy AT gmail.com )