unity开发微信小游戏3-获取微信权限

Posted 小染要给力

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity开发微信小游戏3-获取微信权限相关的知识,希望对你有一定的参考价值。

获取微信权限


`

文章目录


前言

用unity3d开发微信小游戏,遇到了一些问题,记录一下, 同时创建了一个交流群QQ 641029627,有需要的可以加入一起讨论,广告哥远离


提示:以下是本篇文章正文内容,下面案例可供参考

一、设置

首先SDK里面的微信小游戏-使用好友关系链要勾选

二、介绍下SDK

1.WX.InitSDK

初始化SDK,首次调用

WX.InitSDK((code) =>

);

2.WX.GetSetting();

获取设置,也就是能获取到授权结果(用户信息,地理位置,信运动步数等)
https://developers.weixin.qq.com/minigame/dev/api/open-api/setting/AuthSetting.html

GetSettingOption setTingOp = new GetSettingOption();
setTingOp.success = (e) =>

	//if (!e.authSetting.ContainsKey("scope.userInfo") || !e.authSetting["scope.userInfo"])
	//scope.userInfo
	//scope.userInfo
;
WX.GetSetting(setTingOp);

3. WX.Authorize();

提前向用户发起授权请求。调用后会立刻弹窗询问用户是否同意授权小程序使用某项功能或获取用户的某些数据,但不会实际调用对应接口。如果用户之前已经同意授权,则不会出现弹窗,直接返回成功。更多用法详见 [用户授权]
https://developers.weixin.qq.com/minigame/dev/api/open-api/authorize/wx.authorize.html

AuthorizeOption authorizeOption = new AuthorizeOption();
authorizeOption.scope = "scope.userInfo"; //scope: "scope.userInfo"
authorizeOption.success = (e) =>

    Debug.Log("success");
;
authorizeOption.fail = (e) =>

     Debug.Log("fail");
;
authorizeOption.complete = (e) =>

     Debug.Log("complete");
;
 WX.Authorize(authorizeOption);

4. WX.Authorize();

调用接口获取登录凭证(code)。通过凭证进而换取用户登录态信息,包括用户在当前小程序的唯一标识(openid)、微信开放平台帐号下的唯一标识(unionid,若当前小程序已绑定到微信开放平台帐号)及本次登录的会话密钥(session_key)等。用户数据的加解密通讯需要依赖会话密钥完成。更多使用方法详见 [小程序登录]
https://developers.weixin.qq.com/minigame/dev/api/open-api/login/wx.login.html

LoginOption login = new LoginOption();
login.success = (e) =>


;
WX.Login(login);

5. WX.GetUserInfo();

获取用户信息( 必须是在用户已经授权的情况下调用)
appid和secret 在小游戏设置那里可以找到

https://developers.weixin.qq.com/minigame/dev/api/open-api/login/wx.login.html

GetUserInfoOption callBack = new GetUserInfoOption();
                        callBack.withCredentials = true;
                        callBack.lang = "zh_CN";
                        //Debug.Log(e.code);
                        callBack.success = (d) =>
                        
                            /*Debug.Log(e.encryptedData);
                            Debug.Log(e.iv);
                            Debug.Log(e.rawData);
                            Debug.Log(e.signature);*/
                            string url = string.Format("https://api.weixin.qq.com/sns/jscode2session?appid=0&secret=1&js_code=2&grant_type=authorization_code", "自己的appid", "自己的secret", e.code);
                            StartCoroutine(GetRequest(url));
                            RoleManager.roleData.roleName = d.userInfo.nickName;
                            RoleManager.roleData.headUrl = d.userInfo.avatarUrl;
                            Debug.Log(d.userInfo.avatarUrl);
                        ;
                        callBack.complete = (e) =>
                        
                            Debug.Log("完成");
                        ;
                        callBack.fail = (e) =>
                        
                            Debug.Log("失败");
                            Debug.Log(e.errMsg);
                        ;

 WX.GetUserInfo(callBack);

//携程也放进去了
private IEnumerator GetRequest(string url)
    
        using (UnityWebRequest webRequest = UnityWebRequest.Get(url))
        
            yield return webRequest.SendWebRequest();
            if (!string.IsNullOrEmpty(webRequest.error))
            
                Debug.Log("error:" + webRequest.error);
            
            else
            
                UserData data = JsonUtility.FromJson<UserData>(webRequest.downloadHandler.text);
                if (data != null)
                
                    
                    
                
                Debug.Log(webRequest.downloadHandler.text);
            
        

    

总结

今天先总结到这里了,如果感觉有帮助可以帮忙扫了上面的二维码_

Unity开发微信小游戏步骤

unity开发微信小游戏
https://gitcode.net/mirrors/wechat-miniprogram/minigame-unity-webgl-transform?utm_source=csdn_github_accelerator
http://horse7.cn/2022/10/08/unity-%e4%bd%bf%e7%94%a8unity%e5%bc%95%e6%93%8e%e5%bc%80%e5%8f%91%e5%be%ae%e4%bf%a1%e5%b0%8f%e6%b8%b8%e6%88%8f/
https://www.bilibili.com/video/BV1qP4y1Q7Rx/?vd_source=8dc6f542e8bb48b4f7b3e11505b12e10

安装
https://blog.csdn.net/weixin_40055163/article/details/122262332

--点击预览
步骤 第一步准备腾讯企业邮箱
注册小程序 https://mp.weixin.qq.com/wxamp/thirdtools/extend?token=2111191855&lang=zh_CN
第二步 
下载插件  https://gitcode.net/mirrors/wechat-miniprogram/minigame-unity-webgl-transform?utm_source=csdn_github_accelerator
下载微信开发工具 和Node.js   https://blog.csdn.net/weixin_40055163/article/details/122262332
第三步设置
设置 https://blog.csdn.net/Tel17610887670/article/details/127545868

以上是关于unity开发微信小游戏3-获取微信权限的主要内容,如果未能解决你的问题,请参考以下文章

Unity开发微信小游戏步骤

Unity 小程序开发

Unity3d C#开发WebGL平台转微信小游戏保姆级教程(喜大普奔)

Unity 之 发布WebGL转微信小游戏过程详解

如何使用 Unity制作微信小游戏,微信小游戏制作方案 最新完整详细教程来袭持续更新

如何使用 Unity制作微信小游戏,微信小游戏制作方案 最新完整详细教程来袭持续更新