コード例 #1
0
 /**
  *
  * Calls InstagramService::authorize on callback from a click on the InstagramOAuth Login Link
  *
  * @params _GET['code'] - returned from instagram
  *
  * */
 public function auth()
 {
     $code = $_GET['code'];
     $is = new InstagramService();
     $is->authorize($code);
 }