Tag:WeChat
-
Time:2021-1-2
This article mainly introduces the WeChat official account server verification Token steps diagram, the article through the example code introduced in detail, has the certain reference learning value to everybody’s study or the work, needs the friend to refer to. Server verification token verification is divided into the following steps First, set up on WeChat […]
-
Time:2020-11-18
First of all, let’s talk about the background of the problem: Recently, I was working on a project to develop a certain function of wechat asp.net Development, jQuery version 1.8.0. Click the button in wechat to trigger the event, call Ajax to interact with the server, and the callback function goes with error. The reason […]
-
Time:2020-9-17
Wechat is a platform with huge traffic, with 100 million users. How can Lamo access some of its capabilities?For example, wechat login, wechat payment, message notification, etc. Wechat login [better user management] Reduce user registration cost and improve user retention rateAccount exchange and data exchange For the same user, the unionid is the same for […]
-
Time:2020-9-4
The latest official account is the spa application based on Vue. When it comes to WeChat share and WeChat voice, it appears that everything is normal on Android, but it is called at IOS. wx.config It always fails. I went to the official documents and didn’t find a solution. Finally, in the test, it was […]
-
Time:2020-7-30
It needs to be modified here
-
Time:2020-7-6
When WeChat official account is developed, the WeChat browser on the IOS side is opened. When the confirm and alert are triggered, the pop-up box will have the current URL information, and the Android terminal will not test. The solutions are as follows: “` window.alert = function(name){ var iframe = document.createElement(“IFRAME”); iframe.style.display=”none”; iframe.setAttribute(“src”, ‘data:text/plain,’); document.documentElement.appendChild(iframe); […]
-
Time:2020-6-2
Development background: Recently, WeChat has been doing some application development on WeChat. During this time, many skills in developing WeChat have been gained. There are more contacts with WeChat official account and WeChat website app third party login authorization, and WeChat membership card, coupons and scanning two bit code. Today I mainly want to summarize […]
-
Time:2020-5-23
The example of this paper describes how to realize wechat refund in PHP. To share with you for your reference, as follows: $obj = new wxrefund (‘parameter ‘); $obj->refundApi(); You can use the parameters of the official account directly, and you can only help you get here. <?php namespace Wechat; /** *Wechat refund * @author […]
-
Time:2020-5-21
The example of this article describes the PHP wechat payment function. To share with you for your reference, as follows: Wechat development SDK: PHP is used in this article_ sdk_ v3.0.9 : https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=11_1 import(“wxpay.lib.AppPay#Config”, EXTEND_PATH, “.php”); import(“wxpay.lib.WxPay#Api”, EXTEND_PATH, “.php”); //$this->weixinpay(); $config = new \AppPayConfig(); //Order No $appId = $config->GetAppId(); $key = $config->GetKey(); $money = 0.01 […]
-
Time:2020-5-18
The example of this article describes PHP’s method to determine whether wechat access is possible. To share with you for your reference, as follows: Sometimes it is necessary to prohibit or only allow wechat browser access in development, so wechat browser access needs to be judged at this time. This post describes how to determine […]
-
Time:2020-4-14
As we all know, Safari under IOS can’t play music automatically, and it’s useless to take the initiative to start clicking events, Wechat can solve the problem with the following methods document.addEventListener(“WeixinJSBridgeReady”, function () { audio.play(); }, false); But now it can be called directly when wechat is ready wx.ready(function() { audio.play(); }); The above […]
-
Time:2020-3-31
This article describes the sharing function of wechat jssdk with examples. To share with you for your reference, as follows: Here, take wechat sharing to friends circle and sharing to wechat friends as an example for reference, and carry out call test. If you want to add other functions, you can check the developer’s documents […]