Home >WeChat Applet >WeChat Development >Detailed explanation of WeChat authorization for WeChat development
This article mainly introduces relevant information on WeChat development and detailed explanation of WeChat authorization. Friends who need it can refer to it
I recently had the opportunity to do a WeChat project; share the notes I compiled with Everyone, please correct me if there are any shortcomings or mistakes!
1 The flow chart for WeChat authorization is as follows
##Some code fragments are for reference only:var myNickname; var myHeadimgurl; var activityId; function saveData() { //$("#pShow").show(); var obj = {}; obj.openId = myOpenId; obj.nickname = myNickname;// 微信昵称 obj.headimgurl = myHeadimgurl;// 用户头像 // obj.activityimg = "xx";//活动图片 }
Use of local storage:
/* *注明:由于本地存储的东西,一般是可以看到的,所有有一种说法:如果是重*要的数据建议不使用这种方式。 */ //本地存储的运用 -存值 openId = localStorage.getItem("openId"); accesstoken = localStorage.getItem("accesstoken"); //本地存储的运用 -取值 openId = localStorage.getItem("openId"); accesstoken = localStorage.getItem("accesstoken");1. When developing WeChat, it is recommended to create some data first and get the corresponding openId to facilitate
debugging in the browser ;
The above is the detailed content of Detailed explanation of WeChat authorization for WeChat development. For more information, please follow other related articles on the PHP Chinese website!