Home > WeChat Applet > WeChat Development > WeChat Development-WeChat Authorization Issues

WeChat Development-WeChat Authorization Issues

高洛峰
Release: 2017-03-11 14:08:19
Original
1511 people have browsed it

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!

1The flow chart for WeChat authorization is as follows

WeChat Development-WeChat Authorization Issues

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";//活动图片
}
Copy after login

Use of local storage:


/*
*注明:由于本地存储的东西,一般是可以看到的,所有有一种说法:如果是重*要的数据建议不使用这种方式。
*/
//本地存储的运用 -存值
openId = localStorage.getItem("openId");
accesstoken = localStorage.getItem("accesstoken");

//本地存储的运用 -取值
openId = localStorage.getItem("openId");
accesstoken = localStorage.getItem("accesstoken");
Copy after login

1. For WeChat development, it is recommended to create some data first. Get the corresponding openId to facilitate debugging in the browser;

2. The slightly troublesome thing is that every time the adjustment is completed, it needs to be published to the service, otherwise it will have no effect. . . This lz was very hurt at the beginning. If it is something that is online, everyone knows it. You'd better agree with the customer and adjust it tonight

Thanks for reading, I hope it can help everyone, thank you everyone Support this site!

The above is the detailed content of WeChat Development-WeChat Authorization Issues. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template