备案超过一天限制了吧,明天早一点再试一下
备案提示系统繁忙?资料之前提示主体不一致,等了半个月,现在提示系统繁忙,请问怎么回事[图片]
01-09B是b的二维码,两个不是一个二维码
二维码会不会变?目前在使用A款小程序 有个A款的小程序二维码 如果后期我更换B款小程序 那A款的小程序二维码 会不会变掉? 还是延用?请大佬们教一下 帮忙看一下
01-0915个工作日,最好多等几天,后面还是不行联系客服刷新下
今天第15天了还是返回企业信息或法定代表人信息不一致?可以加急一下吗?[图片][图片] 济南市历下区恒邦运网络科技工作室(个体工商户) 92370102MAD8HHW94Y 徐本辰
01-08https://developers.weixin.qq.com/community/develop/doc/000c88c4fd4228be88194911d51409 这个看下,如果不行需要联系工作人员了
企业信息或法定代表人信息不致”。法定代表人验证失败。核对过很多次了?都不行原始ID:gh_f328289bfc25 主体信息:临海市卓衫服装店(个体工商户) 法人:冯书颖 统一社会信用代码:92331082MAD5JGXTXY 法人微信号:nyaDDy 已经核对过很多次了,都显示信息不一致。
01-08去web后台处理就可以,这个好像是字数不够,也没啥提示
微信支付商家助手收到一个公众号的投诉,点开输入处理内容后却无法点击确认按钮,是怎么回事?微信支付商家助手收到一个公众号的投诉,点开输入处理内容后却无法点击确认按钮,尝试过多录入一些内容,但是确认按钮仍然是不可用状态,请问这种投诉要怎样才能处理掉?[图片]
01-08用开发者工具调试下
微信端使用webview方式跳转H5端出现页面白屏,请问该如何解决?在微信小程序中,使用webview方式跳转到H5端,出现跳转的页面是空白页面,但是将跳转的地址复制到浏览器中却可以正常打开,业务域名这些都已经配置了,请问该如何解决: [图片] [图片]
01-08[图片]
获取手机号码时提交到C#后台错误怎么解决?接收的参数 string encryptedData = Request.QueryString["encryptedData"]; string iv = Request.QueryString["iv"]; string session_key = Request.QueryString["session_key"]; 接收到了出错。怎么解决这个呢? 下面是提交过去的参数, ------------------------------------------------------------- encryptedData: "Tx6KCFvYbdoZ01C19SHXsVemO155JoQmaeJaaaTX5EZkM1lK5UrD3NBrC/6HkZEpC4Jcfw8s5guWcrFB1P+dJ2JEGvo6WI939K7R+vmUxsQRwadChrE3d1yveGcCP6f6A88tHnPq407Chw2h/8ZrZJC7O5gZm/pxbQT33t2yHmpkuboHm7wrl897ZH44ocx2NsD13T4p3I5tAyODUXXHfA==" iv: "N4jC6bfGPkRUMOA5WNl3AQ==" session_key: "QNNuDoOyWFBqB5E\/zt0Eqw==" -------------------------------------------------------- 以下出错: "<!DOCTYPE html> <html> <head> <title>输入的不是有效的 Base-64 字符串,因为它包含非 Base-64 字符、两个以上的填充字符,或者填充字符间包含非法字符。</title> <meta name="viewport" content="width=device-width" /> <style> body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;} p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px} b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px} H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red } H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon } pre {font-family:"Consolas","Lucida Console",Monospace;font-size:11pt;margin:0;padding:0.5em;line-height:14pt} .marker {font-weight: bold; color: black;text-decoration: none;} .version {color: gray;} .error {margin-bottom: 10px;} .expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:pointer; } @media screen and (max-width: 639px) { pre { width: 440px; overflow: auto; white-space: pre-wrap; word-wrap: break-word; } } @media screen and (max-width: 479px) { pre { width: 280px; } } </style> </head> <body bgcolor="white"> <span><H1>“/”应用程序中的服务器错误。<hr width=100% size=1 color=silver></H1> <h2> <i>输入的不是有效的 Base-64 字符串,因为它包含非 Base-64 字符、两个以上的填充字符,或者填充字符间包含非法字符。</i> </h2></span> <font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif "> <b> 说明: </b>执行当前 Web 请求期间,出现未经处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。 <br><br> <b> 异常详细信息: </b>System.FormatException: 输入的不是有效的 Base-64 字符串,因为它包含非 Base-64 字符、两个以上的填充字符,或者填充字符间包含非法字符。<br><br> <b>源错误:</b> <br><br> <table width=100% bgcolor="#ffffcc"> <tr> <td> <code><pre> 行 242: byte[] encryData = Convert.FromBase64String(encryptedData); 行 243: RijndaelManaged rijndaelCipher = new RijndaelManaged(); <font color=red>行 244: rijndaelCipher.Key = Convert.FromBase64String(session_key); </font>行 245: rijndaelCipher.IV = Convert.FromBase64String(iv); 行 246: rijndaelCipher.Mode = CipherMode.CBC;</pre> </code> </td> </tr> </table> <br> <b> 源文件: </b> E:\sysXiaoshou\sysXiaoshou\wxapi\getuserinfo.aspx.cs<b> 行: </b> 244 <br><br> <b>堆栈跟踪:</b> <br><br> <table width=100% bgcolor="#ffffcc"> <tr> <td> <code><pre> [FormatException: 输入的不是有效的 Base-64 字符串,因为它包含非 Base-64 字符、两个以上的填充字符,或者填充字符间包含非法字符。] System.Convert.FromBase64_Decode(Char* startInputPtr, Int32 inputLength, Byte* startDestPtr, Int32 destLength) +6226339 System.Convert.FromBase64CharPtr(Char* inputPtr, Int32 inputLength) +147 System.Convert.FromBase64String(String s) +50 sysXiaoshou.wxapi.getuserinfo.getphone_data() in E:\sysXiaoshou\sysXiaoshou\wxapi\getuserinfo.aspx.cs:244 sysXiaoshou.wxapi.getuserinfo.Page_Load(Object sender, EventArgs e) in E:\sysXiaoshou\sysXiaoshou\wxapi\getuserinfo.aspx.cs:35 System.Web.UI.Control.OnLoad(EventArgs e) +108 System.Web.UI.Control.LoadRecursive() +90 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1602 </pre> </code> </td> </tr> </table> <br> <hr width=100% size=1 color=silver> <b>版本信息:</b> Microsoft .NET Framework 版本:4.0.30319; ASP.NET 版本:4.8.9206.0 </font> </body> </html> <!-- [FormatException]: 输入的不是有效的 Base-64 字符串,因为它包含非 Base-64 字符、两个以上的填充字符,或者填充字符间包含非法字符。 在 System.Convert.FromBase64_Decode(Char* startInputPtr, Int32 inputLength, Byte* startDestPtr, Int32 destLength) 在 System.Convert.FromBase64CharPtr(Char* inputPtr, Int32 inputLength) 在 System.Convert.FromBase64String(String s) 在 sysXiaoshou.wxapi.getuserinfo.getphone_data() 位置 E:\sysXiaoshou\sysXiaoshou\wxapi\getuserinfo.aspx.cs:行号 244 在 sysXiaoshou.wxapi.getuserinfo.Page_Load(Object sender, EventArgs e) 位置 E:\sysXiaoshou\sysXiaoshou\wxapi\getuserinfo.aspx.cs:行号 35 在 System.Web.UI.Control.OnLoad(EventArgs e) 在 System.Web.UI.Control.LoadRecursive() 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) [HttpUnhandledException]: 引发类型为“System.Web.HttpUnhandledException”的异常。 在 System.Web.UI.Page.HandleError(Exception e) 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 在 System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 在 System.Web.UI.Page.ProcessRequest() 在 System.Web.UI.Page.ProcessRequest(HttpContext context) 在 ASP.wxapi_getuserinfo_aspx.ProcessRequest(HttpContext context) 位置 c:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\root\822d7d9d\393e6636\App_Web_2ojkjvay.1.cs:行号 0 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) -->"
01-05接收成功后,你就直接正常返回就可以,不用加报文 [图片]
微信支付后重复回调通知?JSAPI支付后 微信多次回调通知 c# .net 代码按官方响应无效 [图片]
01-04https://developers.weixin.qq.com/community/develop/doc/000c88c4fd4228be88194911d51409 参考这个
你好,工商数据返回:“企业信息或法定代表人信息不一致”。法定代表人验证失败?信息填写的都是正确的,但是一直都这样提示,微信认证无法通过。 [图片][图片][图片]
01-04登录小程序后台,看下有没有提示通知
小程序打开报错,提示: 小程序违规,请修复后再提交,审核不通过咋整?[图片] 获取手机号功能被禁用了,提示“由于小程序违规,该功能暂时无法使用”。这个怎么弄?问客服客服连懂都不懂,答非所问。直接解决不了让我来着发帖了。
01-04