current location:Home > Technical Articles > WeChat Applet > WeChat Development
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- Summary of usage examples for web page authorization acquisition
- The steps to obtain user information are as follows: 1 Step 1: The user agrees to authorize and obtain code2 Step 2: Exchange the code for web page authorization access_token3 Step 3: Refresh access_token (if necessary) 4 Step 4: Pull user information (scope is required snsapi_userinfo)1 Obtain the code on the premise of ensuring that the WeChat public account has the permissions of the authorization scope (scope parameter) (after the service account obtains the advanced interface, it will have snsapi_base and scope parameters in the scope parameter by default...
- WeChat Development 2112 2017-06-11 13:58:58
-
- How to use interface configuration? Summary of interface configuration example usage
- Preliminary work for WeChat public platform development As shown in the figure, URL (network link for signature verification), Token, and JS interface security fields are required, and URL and Token are required. Before configuring them, you must first upload the signature verification code to your development server. Otherwise, no matter how you submit the interface configuration information, you will only be prompted for configuration failure. The URL mentioned earlier is the network path to access the signature verification code. The signed code WeChat development documents are provided: WeChat signature verification code is debugged using WeChat development tools, and the developer WeChat needs to be added...
- WeChat Development 2653 2017-06-11 13:49:22
-
- How to use QR code login? Summarize the usage of QR code login examples
- This article mainly analyzes the QR code login principle js code of WeChat QQ in detail, which has certain reference value. Interested friends can refer to it. In many places, the use of QR code to log in and QR code appear. Payment, QR code account and other applications (QR code stallion here, let’s not talk about fraud), QR code verification, multi-terminal auxiliary authorization applications are beginning to increase. Let’s first talk about what a QR code is. In fact, the second QR code is a black and white picture that stores binary data. When a QR code is required to log in, the server will generate a temporary and unique QR code information and send it to the client in QR code...
- WeChat Development 4598 2017-06-11 13:32:45
-
- Detailed introduction to the preparation stage
- Resources required for the preparatory stage of WeChat development: 1. WeChat public platform account 2. Baidu BAE platform account 1. WeChat public account application Log in to the WeChat public platform There is registration in the upper right corner and fill in the relevant information to register. What I am registering here is a personal subscription If you have company information, you can register a service account. In addition, due to the limited interface for personal subscription accounts, it is not very beneficial for personal development. WeChat also provides a test account, which is specially used by developers. Enter such as...
- WeChat Development 1654 2017-06-11 11:45:49
-
- Detailed introduction to running WeChat
- Preface I have put all the code on github-weChatApp-Run. You can download it to take a look or star it first. I will make some optimization updates in the future. Now it is just a learning demo, everyone communicates and learns, and the actual application needs more optimization. Text 1. Preparation 1. To register a mini program account, you must use an email address that has not registered a public account. 2. The registration process requires a lot of certifications. There are many certifications, which are relatively cumbersome. If it is just development and testing for the time being, without review or release, you only need to fill in the business license number. There is no need to complete...
- WeChat Development 2349 2017-06-11 11:43:30
-
- Detailed introduction to technical tips
- This article mainly introduces to you relevant information on forty technical tips for the development of WeChat mini programs. I believe it has certain reference value for everyone to learn or use WeChat mini programs, so it is specially recommended to everyone. Friends who need it can Let’s take a look. Preface It has been a week since the WeChat “mini program” was officially launched, and related topics continue to heat up. The news of Alipay's development of "mini programs" was immediately exposed, and Internet giants were gearing up. Many netizens joked that this momentum would challenge the existing "APP empire." So, faced with such a popular small program, WeX5 Mobile Development Cloud has no...
- WeChat Development 1907 2017-06-11 11:42:33
-
- Summary of how to use WeChat red envelope interface
- Welcome to leave a message and forward a series of articles on WeChat rapid development: click here. The previous articles introduced WeChat payment. Official account payment, WeChat scan code payment, card payment, WeChat payment This article will talk about the payment tools in WeChat merchants - cash red envelope cash red envelope.png Preparation work [Official Document] 1. Activate cash red envelope permission before using cash Before sending a red envelope, please go to activate the cash red envelope function. Operation path: [Log in to the WeChat Payment Merchant Platform——>Product Center——>Cash Red Envelope——>Activate]. 2. When a merchant downloads the API certificate and calls the WeChat red envelope interface, the service...
- WeChat Development 2254 2017-06-11 11:08:39
-
- Summary about jumping to the current instance
- There are three forms of routing jumps for WeChat mini programs. The navigator component is used in the page to make routing jumps in the form of page links. In js, wx.navigateTo can be used to retain the current page and jump to a certain page in the application, wx. redirectTo--Close the current page and jump to a page within the application wx.navigateBack()--Close the current page and go back to the previous page. The navigator component makes page links  ...
- WeChat Development 1757 2017-06-11 10:48:32
-
- 10 recommended courses on competition
- WeChat announced that due to Apple's regulations, the iOS version has completely eliminated the function of public platform appreciation, including QR code transfers. This is equivalent to basically cutting off the financial resources of iOS platform operators. So, why does Apple do this? According to the latest report from Sina Technology, Apple has responded to this matter, saying that Apple was not forced to stop the appreciation function. WeChat could have chosen in-app purchases for public account operators like other developers. Apple emphasizes that the App Store ecosystem has the same requirements for all developers, including WeChat, which has 800 million users...
- WeChat Development 1554 2017-06-11 10:35:45
-
- Detailed introduction to left swipe to delete
- The left-swipe to delete effect is very popular in app interaction methods, such as the universal app WeChat, WeChat, left-swipe to delete, and the efficiency app ClearClear, which has caused a great response, left-swipe to delete. Technically speaking, it is not difficult to achieve this effect. Just respond to the slide. Operation, just move the component, add some coordinate calculations, and record the status. There are also some articles describing how to achieve this effect on mini programs, but I am basically certain that these developers have not tested it in detail on real machines, because through practice I have found that it is almost impossible to perfectly achieve this effect on mini programs. Completed tasks...
- WeChat Development 2951 2017-06-11 10:32:14
-
- Detailed introduction to the structure overview
- WeChat Mini Program Development Tutorial (Basics) 1-First Introduction to WeChat Mini Programs WeChat Mini Program Development Tutorial (Basics) 2-WeChat Mini Program Structure Overview In the previous tutorial, it was written that the development tool will generate a default program framework. The main process code of the program is included in app.js. In the default implementation, this part of the function is relatively simple, but it is still valuable for learning and researching small program development. Since there are not many lines of code, I will post it all at once and explain it later //app.jsApp({ onLaunch: fu...
- WeChat Development 1535 2017-06-11 10:31:50
-
- Detailed introduction to user group management
- Model layer entity class: public class UserList { public string total { get; set; } pub
- WeChat Development 4834 2017-06-11 10:27:31
-
- What is WeChat authentication? Summary of how to use WeChat authentication
- This article mainly provides a detailed analysis of the .Net code for the certification of "becoming a developer" in the development of WeChat public platform. Interested friends can refer to the .Net certification for the development of WeChat public service platform and certification to become a developer. Specific details The content of these codes is as follows. These codes are only used once when starting the authentication, and will not be used in the future: const string Token = "XXXXX";//Your token pr...
- WeChat Development 3004 2017-06-11 10:27:25
-
- Recommended courses on sliding operations
- Among the actual mobile application interaction methods, the most common one is the sliding operation. Sliding left and right to switch pages, spreading your fingers to enlarge pictures, etc. are all done by sliding operations. The related events provided by the WeChat applet by default are as follows: touch-related operation events tap correspond to click operations, and longtap is also provided to support long press operations. These are relatively simple, so I won’t go into details. touchmove corresponds to the sliding operation, and bindtouchmove can respond to the sliding operation. //wxml<view id="...
- WeChat Development 1824 2017-06-11 10:25:20
-
- 10 recommended articles about account development
- Abstract: After more than a year of development, China Merchants Bank has exceeded 15 million fans in 2014, ranking first among banking WeChat public accounts. It can be called the most successful WeChat public account case. As the developer of China Merchants Bank’s credit card WeChat platform, Shenzhen CloudSoft has summarized the following experiences regarding the development of advanced applications for WeChat public accounts. In April 2013, China Merchants Bank's credit card WeChat public account was launched with a "little trick" friendly image. It gained the favor of millions of users in less than half a year. After more than a year of development, it has more than 15 million fans so far. Ranking top of the list of banking WeChat public accounts, it can be called the most successful...
- WeChat Development 1558 2017-06-11 10:22:00