PHP获取微信 accesstoken

PHP根据appid和secret获取微信access_token,php通过curl远程获取微信access_token信息
微信公众号开启开发者模式,使用appid和secret请求微信获取accesstoken的接口路径,就可以了,

$appid = ‘wx422126b0b6bbfcfc‘;
$secret = ‘***‘;

$url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" . $appid . "&secret=" . $secret . "";
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
print_r(json_decode($result, true));

主要就只要整合到自己的项目中就可以了,accesstoken是只要使用微信公众号的话就需要的,写成方法整合一下就可以了

功能完成代码参考:http://www.erdangjiade.com/php/1007.html

时间: 2024-10-12 14:43:17

PHP获取微信 accesstoken的相关文章

利用PBfunc在Powerbuilder中使用https获取微信的AccessToken

在前篇中讲解了使用PBFunc在Powerbuilder自己进行http的GET和POST操作. 本篇简单用代码演示下https的微信AccessToken的获取: 1 n_pbfunc_http lnv_http 2 lnv_http.of_clear()//清空参数 3 string ls_appId,ls_secret 4 ls_appId ="wx6c8ed522d20c65e1"//在微信公众号后台找出填入你自己的AppId(应用ID) 5 ls_secret="7

Delphi XE7 用indy开发微信公众平台(2)- 获取微信服务器IP地址

获取微信服务器IP地址 const ServerIpUrl = 'https://api.weixin.qq.com/cgi-bin/getcallbackip?&access_token=%s'; procedure GetServerList(out List: TStringList; AccessToken: String); var Url: string; J: TJSONObject; temp: String; begin Url := Format(ServerIpUrl, [

Python实现获取微信企业号access_token的Class

微信公众号共有三种,服务号.订阅号.企业号.它们在获取AccessToken上各有不同.其中订阅号比较坑,它的AccessToken是需定时刷新,重复获取将导致上次获取的AccessToken失效.而企业号就比较好,AccessToken有效期同样为7200秒,但有效期内重复获取返回相同结果.为兼容这两种方式,因此按照订阅号的方式处理. 处理办法与接口文档中的要求相同: 为了保密appsecrect,第三方需要一个access_token获取和刷新的中控服务器.而其他业务逻辑服务器所使用的acc

获取微信昵称、头像等信息方法

在PHP文件里加入以下代码: <?php require_once("getUserInfo/getUserInfo.php");  //获取微信信息php $test = new Webweixin(); $userinfo = $test->get_userinfo(); print_r("headimgurl:".$userinfo['headimgurl']."openid:".$userinfo['openid'].&quo

微信公众号平台接口开发:基础支持,获取微信服务器IP地址

官方说明 目前看不出来这个接口有哪些具体运用,但是既然有这个接口,那我们就试试能不能用 访问接口 修改WeCharBase.cs,新增以下2个方法 1 public static string ServerIPs 2 { 3 get { return GetServerIPs(); } 4 } 5 6 /// <summary>获取所有服务器IP</summary> 7 /// <returns></returns> 8 private static str

获取微信的access_tokey,处理json格式的数据

#region 获取微信凭证       public string GetAccessToken(string wechat_id)       {           string accessToken = "";           DataTable dtwecaht = wechatdal.GetList("wechat_id='" + wechat_id + "'").Tables[0];           if (dtwecah

从微信官方获取微信公众号名片:http://open.weixin.qq.com/qr/code/?username=haihongruanjian

从微信官方获取微信公众号名片:http://open.weixin.qq.com/qr/code/?username=haihongruanjian 个人的号,不知道怎么获取.

微信公众平台开发—利用OAuth2.0获取微信用户基本信息

1.首先在某微信平台下配置OAuth2.0授权回调页面: 2.通过appid构造url获取微信回传code值(appid可在微信平台下找到) 1).微信不弹出授权页面url: A.code回传到页面wxProcess2.aspx,不带参数 [csharp] view plain copy Response.Redirect("https://open.weixin.qq.com/connect/oauth2/authorize?appid=" + appid + "&

python获取微信公共平台消息列表和用户头像

转载需注明原文地址:http://blog.csdn.net/btyh17mxy/article/details/25207889 刚写的模拟登陆的方式从获取微信公众平台消息列表和用户头像的库,之后还会继续增加相关功能,github地址https://github.com/btyh17mxy/wxwall #!/usr/bin/env python # coding: UTF-8 import json import hashlib import re import random import