• 大小: 2.90KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 语言: PHP
  • 标签: openId  php  pe  hp  头像  

资源简介


资源截图

代码片段和文件信息

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

评论

共有 条评论