php 위 챗 openid 획득 방법 요약
오늘 내 가 말 하고 자 하 는 것 은 두 번 째 웹 페이지 에서 openid 를 얻 을 수 있 는 권한 을 부여 하 는 것 이다.다음은 제 가 쓴 openid 가 져 오기 클래스 입 니 다.
<?php
/**
*
*
* @link http://www.phpddt.com
*/
class Wchat
{
private $app_id = 'wx444444444444';
private $app_secret = '77777777';
private $state='aaaa';
/**
*
*
* @param string $redirect_uri
* @param mixed $state
*/
public function get_authorize_url($redirect_uri = '', $state = '')
{
$redirect_uri = urlencode($redirect_uri);
return "https://open.weixin.qq.com/connect/oauth2/authorize?appid={$this->app_id}&redirect_uri={$redirect_uri}&response_type=code&scope=snsapi_userinfo&state={$state}#wechat_redirect";
}
/**
* openid
*/
public function getOpenid($turl)
{
if (!isset($_GET['code'])){
// code
$url=$this->get_authorize_url($turl, $this->state);
Header("Location: $url");
exit();
} else {
// code , openid
$code = $_GET['code'];
$access_info = $this->get_access_token($code);
return $access_info;
}
}
/**
* token
*
* @param string $code get_authorize_url code
*/
public function get_access_token($code = '')
{
$appid=$this->app_id;
$appsecret=$this->app_secret;
$token_url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=".$appid."&secret=".$appsecret."&code=".$code."&grant_type=authorization_code";
//echo $token_url;
$token_data = $this->http($token_url);
// var_dump( $token_data);
if($token_data[0] == 200)
{
$ar=json_decode($token_data[1], TRUE);
return $ar;
}
return $token_data[1];
}
public function http($url, $method='', $postfields = null, $headers = array(), $debug = false)
{
$ci = curl_init();
/* Curl settings */
curl_setopt($ci, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ci, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($ci, CURLOPT_TIMEOUT, 30);
curl_setopt($ci, CURLOPT_RETURNTRANSFER, true);
switch ($method) {
case 'POST':
curl_setopt($ci, CURLOPT_POST, true);
if (!empty($postfields)) {
curl_setopt($ci, CURLOPT_POSTFIELDS, $postfields);
$this->postdata = $postfields;
}
break;
}
curl_setopt($ci, CURLOPT_URL, $url);
curl_setopt($ci, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ci, CURLINFO_HEADER_OUT, true);
$response = curl_exec($ci);
$http_code = curl_getinfo($ci, CURLINFO_HTTP_CODE);
if ($debug) {
echo "=====post data======\r
";
var_dump($postfields);
echo '=====info=====' . "\r
";
print_r(curl_getinfo($ci));
echo '=====$response=====' . "\r
";
print_r($response);
}
curl_close($ci);
return array($http_code, $response);
}
}
?>
getOpenid($turl)이 방법 은 openid 를 가 져 오 는 방법 입 니 다.전단 호출 코드 는 다음 과 같 습 니 다.
$openid=isset($_COOKIE['openid'])?$_COOKIE['openid']:'';
if(empty($openid))
{
$wchat=new wchat();
$t_url='http://'.$_SERVER['HTTP_HOST'].'/user.php?act=register';
$info=$wchat->getOpenid($t_url);
if($info){
$openid=$info['openid'];
setcookie('openid',$openid,time()+86400*30);
}
}
이상 은 제 가 정리 한 openid 를 얻 는 방법 입 니 다.이상 은 php 가 위 챗 openid 를 가 져 오 는 상세 한 내용 입 니 다.다른 관련 글 에 관심 을 가 져 주 십시오!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laravel - 변환된 유효성 검사 규칙으로 API 요청 제공동적 콘텐츠를 위해 API를 통해 Laravel CMS에 연결하는 모바일 앱(또는 웹사이트) 구축을 고려하십시오. 이제 앱은 CMS에서 번역된 콘텐츠를 받을 것으로 예상되는 다국어 앱이 될 수 있습니다. 일반적으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.