資源簡介
代碼片段和文件信息
class?oauth2{
public?$REDIRECT_URL=““;
? public?$APPID=““;
? public?$SECRET=““;
?
? public?$Code=““;
? public?$State=““;
? public?$Access_token=““;
?
? public?$Openid=““;
?
? function?__construct(){
? //默認使用的appid
? $this->APPID=‘wxa3d16526503e71f4‘;
? $this->SECRET=‘67e2daa17b8769ceb991abbf74c5e52a‘;
? }?
????
? /**
? ?*?初始化參數。(包括微信接口參數$code、$state)
? ?*?@param?string?$APPID
? ?*?@param?string?$SECRET
? ?*?@param?string?$REDIRECT_URL
? ?*/
? function?init($APPID$SECRET$REDIRECT_URL=‘http://www.rendersky.cn/demo/oauth2.php‘){
? $this->REDIRECT_URL=$REDIRECT_URL;
? $this->APPID=$APPID;
? $this->SECRET=$SECRET;
?
? $this->Code=$_GET[‘code‘];//code
? $this->State=$_GET[‘state‘];//state參數
? }
?
? /**
? ?*?獲取Code
? ?*?(傳遞state參數)
? ?*/
? function?get_code($state=‘1‘
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2017-08-08?10:26??demo\
?????文件????????3031??2017-08-05?20:38??demo\oauth2.php
?????文件????????1029??2017-08-05?21:15??demo\testopenid.php
?????文件?????????940??2017-08-05?21:03??demo\testuserinfo.php
評論
共有 條評論