码迷,mamicode.com
首页 > 微信 > 详细

【微信开发】常用 api

时间:2016-03-18 10:47:49      阅读:483      评论:0      收藏:0      [点我收藏+]

标签:

【微信开发】api

一. 开发文档

二. 调试工具

三. api

 1. 获取 token - https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={0}&secret={1}

  有过期时效,需要定时刷新

 

 2. 获取 ticket - https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token={0}&type=jsapi

  有过期时效,需要定时刷新

 

 3. url 转换成 微信 链接 - https://open.weixin.qq.com/connect/oauth2/authorize?appid={0}&redirect_uri={1}&response_type=code&scope=snsapi_base&state=123#wechat_redirect

  通过微信跳转后会返回 code, 可用于获取客户微信账号信息

 

 4. 获取 opend - https://api.weixin.qq.com/sns/oauth2/access_token?appid={0}&secret={1}&code={2}&grant_type=authorization_code

  openid 为客户微信id(不同的订阅号微信id不同,还没证实),可用于做客户标志

 

 5. 获取客户微信账号信息 - https://api.weixin.qq.com/sns/userinfo?access_token={0}&openid={1}&lang=zh_CN

 

 6. 获取客户上传的图片,视频等 - http://file.api.weixin.qq.com/cgi-bin/media/get?access_token={0}&media_id={1}

 

【微信开发】常用 api

标签:

原文地址:http://www.cnblogs.com/fzz2727551894/p/5291078.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!