第一步php
建立GitHub的應用 : https://github.com/settings/applications/newgit
填寫好應用名稱,主頁url,介紹,回調url保存便可,系統會分配給咱們client_id和client_secretgithub
第二步,寫代碼咯,有一點須要注意的是,獲取用戶信息須要帶上指定的user-agent,不然接口會返回403哦redis
$this->curl->http_header('User-Agent', 'https://api.github.com/meta');
json
<?php /** * Created by PhpStorm. * User: lf * Date: 2017/5/8 * Time: 16:20 */ class Github_callback extends CI_Controller { private $client_id = 'your github application client_id'; private $client_secret = 'your github application client_secret'; private $auth_url = 'https://github.com/login/oauth/authorize?';//受權地址 private $token_url = 'https://github.com/login/oauth/access_token?';//獲取access_token地址 private $user_url = 'https://api.github.com/user?';//獲取用戶信息地址 public function __construct() { parent::__construct(); } /* * 發起受權demo and 受權回調 */ public function index() { $code = $this->input->get('code'); if (!$code) { $params = ['client_id' => $this->client_id, 'scope' => 'user']; $jump_url = $this->auth_url . http_build_query($params); header('Location:' . $jump_url); exit; } else { $token_params = [ 'client_id' => $this->client_id, 'client_secret' => $this->client_secret, 'code' => $code ]; $access_token_url = $this->token_url . http_build_query($token_params); $access_token = $this->curl_get($access_token_url); $user_url = $this->user_url . $access_token; $user_info = $this->curl_get($user_url); $user_data = json_decode($user_info, true); $this->handle_github_user($user_data); } } private function curl_get($url) { $this->load->library('Curl'); $this->curl->http_header('User-Agent', 'https://api.github.com/meta'); $resullt = $this->curl->simple_get($url); return $resullt; } /** * 處理用戶邏輯/入庫或者redis * @param $user_data * @return bool */ private function handle_github_user($user_data) { $this->load->driver('cache', array('adapter' => 'redis')); $cache_key = 'github_user_id_'; $user_info = $this->cache->get($cache_key . $user_data['id']); if (!$user_info && $user_data && $user_data['id']) { $this->cache->save($cache_key . $user_data['id'], $user_data); } else { return false; } return true; } }