微信 关闭手机微信内置浏览器的js
摘要:WeixinJSBridge.call('closeWindow');
阅读全文
微信接受请求的接口
摘要:using System;using System.Web;using WeiXin.Core;using Framework.Core;using Newtonsoft.Json;namespace WeiXin{ public class ReceiveHttpHandler : IHtt...
阅读全文
微信响应文本消息
摘要:using System;using System.Collections.Generic;using System.Web;using YTO.WeiXin.BLL;using YTO.WeiXin.BLL.Interface;using YTO.WeiXin.Core;using YTO.Wei...
阅读全文
GETorPOST方式保存和获取图片信息
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;using System.IO;using ServiceStack.Text;namespace W...
阅读全文
微信OAuth2网页授权
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using YTO.WeiXin.Model;using YTO.Framework.Core;using Newtonsoft.Jso...
阅读全文
微信Accesstoken通过xml文件方式保存
摘要://获取accessToken public static AccessToken GetAccessToken() { string AppID = JobBase.GetConfParamValue(ParamEnum.AppID); ...
阅读全文
微信接口对接验证
摘要://接口对接验证 public static string Validation(HttpContext context) { string token = JobBase.GetConfParamValue(ParamEnum.Token)...
阅读全文
微信公众平台开发之微信access_token如何有效长期保存
摘要:摘要:随着微信使用越来越广泛,微信公众平台开放了许多接口以提供更多个性化的服务,包括自定义菜单接口、客服接口、获取用户信息接口、用户分组接口、群发接口等,开发者在调用这些接口时,都需要传入一个相同的参数access_token,它是公众账号的全局唯一票据,它是接口访问凭证。 access_t...
阅读全文