php教程 PHP源码 QQ互联OAuth

QQ互联OAuth

May 23, 2016 pm 05:09 PM

代码片段(1) [全屏查看所有代码]

                       

                       

1. [代码][PHP]代码     跳至                     [1]     [全屏预览]

           

/**
 * QQ互联 oauth
 * @author dyllen
 *
 */
class Oauth
{
	//取Authorization Code Url
	const PC_CODE_URL = 'https://graph.qq.com/oauth2.0/authorize';
	
	//取Access Token Url
	const PC_ACCESS_TOKEN_URL = 'https://graph.qq.com/oauth2.0/token';
	
	//取用户 Open Id Url
	const OPEN_ID_URL = 'https://graph.qq.com/oauth2.0/me';
	
	//用户授权之后的回调地址
	public $redirectUri = null;
	
	// App Id
	public $appid = null;
	
	//App Key
	public $appKey = null;
	
	//授权列表
	//字符串,多个用逗号隔开
	public $scope = null;
	
	//授权code
	public $code = null;
	
	//续期access token的凭证
	public $refreshToken = null;
	
	//access token
	public $accessToken = null;
	
	//access token 有效期,单位秒
	public $expiresIn = null;
	
	//state
	public $state = null;
	
	public $openid = null;
	
	//construct
	public function __construct($config=[])
	{
		foreach($config as $key => $value) {
			$this->$key = $value;
		}
	}
	
	/**
	 * 得到获取Code的url
	 * @throws \InvalidArgumentException
	 * @return string
	 */
	public function codeUrl()
	{
		if (!$this->redirectUri) {
			throw new \Exception('parameter $redirectUri must be set.');
		}
		$query = [
				'response_type' => 'code',
				'client_id' => $this->appid,
				'redirect_uri' => $this->redirectUri,
				'state' => $this->getState(),
				'scope' => $this->scope,
		];
	
		return self::PC_CODE_URL . '?' . http_build_query($query);
	}
	
	/**
	 * 取access token
	 * @throws Exception
	 * @return boolean
	 */
	public function getAccessToken()
	{
		$params = [
				'grant_type' => 'authorization_code',
				'client_id' => $this->appid,
				'client_secret' => $this->appKey,
				'code' => $this->code,
				'redirect_uri' => $this->redirectUri,
		];
	
		$url = self::PC_ACCESS_TOKEN_URL . '?' . http_build_query($params);
		$content = $this->getUrl($url);
		parse_str($content, $res);
		if ( !isset($res['access_token']) ) {
			$this->thrwoError($content);
		}
	
		$this->accessToken = $res['access_token'];
		$this->expiresIn = $res['expires_in'];
		$this->refreshToken = $res['refresh_token'];
	
		return true;
	}
	
	/**
	 * 刷新access token
	 * @throws Exception
	 * @return boolean
	 */
	public function refreshToken()
	{
		$params = [
				'grant_type' => 'refresh_token',
				'client_id' => $this->appid,
				'client_secret' => $this->appKey,
				'refresh_token' => $this->refreshToken,
		];
	
		$url = self::PC_ACCESS_TOKEN_URL . '?' . http_build_query($params);
		$content = $this->getUrl($url);
		parse_str($content, $res);
		if ( !isset($res['access_token']) ) {
			$this->thrwoError($content);
		}
	
		$this->accessToken = $res['access_token'];
		$this->expiresIn = $res['expires_in'];
		$this->refreshToken = $res['refresh_token'];
	
		return true;
	}
	
	/**
	 * 取用户open id
	 * @return string
	 */
	public function getOpenid()
	{
		$params = [
				'access_token' => $this->accessToken,
		];
	
		$url = self::OPEN_ID_URL . '?' . http_build_query($params);
			
		$this->openid = $this->parseOpenid( $this->getUrl($url) );
		
		return $this->openid;
	}
	
	/**
	 * get方式取url内容
	 * @param string $url
	 * @return mixed
	 */
	public function getUrl($url)
	{
		$ch = curl_init();
		curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
		curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
		curl_setopt($ch, CURLOPT_URL, $url);
		$response =  curl_exec($ch);
		curl_close($ch);
	
		return $response;
	}
	
	/**
	 * post方式取url内容
	 * @param string $url
	 * @param array $keysArr
	 * @param number $flag
	 * @return mixed
	 */
	public function postUrl($url, $keysArr, $flag = 0)
	{
		$ch = curl_init();
		if(! $flag) curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
		curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
		curl_setopt($ch, CURLOPT_POST, TRUE);
		curl_setopt($ch, CURLOPT_POSTFIELDS, $keysArr);
		curl_setopt($ch, CURLOPT_URL, $url);
		$ret = curl_exec($ch);
	
		curl_close($ch);
		return $ret;
	}
	
	
	/**
	 * 取state
	 * @return string
	 */
	protected function getState()
	{
		$this->state = md5(uniqid(rand(), true));
		//state暂存在缓存里面
		//自己定义
                //。。。。。。。。。
	
		return $this->state;
	}
	
	/**
	 * 验证state
	 * @return boolean
	 */
	protected function verifyState()
	{
		//。。。。。。。
	}
	
    /**
     * 抛出异常
     * @param string $error
     * @throws \Exception
     */
	protected function thrwoError($error)
	{
		$subError = substr($error, strpos($error, "{"));
		$subError = strstr($subError, "}", true) . "}";
		$error = json_decode($subError, true);
		
		throw new \Exception($error['error_description'], (int)$error['error']);
	}
	
	/**
	 * 从获取openid接口的返回数据中解析出openid
	 * @param string $str
	 * @return string
	 */
	protected function parseOpenid($str)
	{
		$subStr = substr($str, strpos($str, "{"));
		$subStr = strstr($subStr, "}", true) . "}";
		$strArr = json_decode($subStr, true);
		if(!isset($strArr['openid'])) {
			$this->thrwoError($str);
		}
		
		return $strArr['openid'];
	}
}
로그인 후 복사

                   

                   

본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

AI Hentai Generator

AI Hentai Generator

AI Hentai를 무료로 생성하십시오.

뜨거운 도구

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

드림위버 CS6

드림위버 CS6

시각적 웹 개발 도구

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)