接入微信电子发票流程步骤

  • Post author:
  • Post category:其他



一、流程图

电子发票流程涉及用户、商户、报销方、发票平台和公众平台五个角色。

对于自建发票平台的商户,发票平台即为商户自身的开票系统,承担着制作发票卡券、将发

票卡券插入用户卡包以及报销状态更新的关键作用。

二、步骤及页面

步骤1:检查是否微信打开

步骤2:检查微信版本是否高于或者等于6.0.2版本

//"Mozilla/5.0(iphone;CPU iphone OS 5_1_1 like Mac OS X)     
//AppleWebKit / 534.46(KHTML, like Geocko)Mobile / 9B206 MicroMessenger/ 6.0.2 "
//其中6.0.2为用户安装的微信版本号。商户可以判定版本号是否高于或者等于6.0.2。

步骤3:检查发票是否真实存在

步骤4:获取微信token


        /// <summary>
        ///获取微信token
        /// </summary>
        /// <returns></returns>
        public static string GetToken()
        {
            string CGIBaseUrl = GlobalConfig.Settings["WechartBaseUrl"];
            string AppId = GlobalConfig.Settings["EfpgjAppId"];
            string security = GlobalConfig.Settings["EfpgjSecurity"];
            ObjectCache oCache = MemoryCache.Default;
            string fileContents = oCache["wechart_token"] as string;
            if (fileContents == null)
            {
                var url = string.Format("{0}/token?grant_type=client_credential&appid={1}&secret={2}