从微信小程序开放数据open-data中获取用户信息

时间:2025-01-22 11:49:14
type,开放数据类型
open-gid ,群id,当 type="groupName" 时生效
lang ,当 type="user*" 时生效,以哪种语言展示 userInfo,有效值有:en, zh_CN, zh_TW
type开放数据类型
    groupName   拉取群名称   
    userNickName  用户昵称  
    userAvatarUrl   用户头像  
    userGender  用户性别 
    userCity  用户所在城市  
    userProvince  用户所在省份  
    userCountry   用户所在国家  
    userLanguage  用户的语言 

例:

<view>用户昵称、性别:</view>
<open-data type="userNickName" lang="zh_CN"></open-data>
<open-data type="userGender" lang="zh_CN"></open-data>
<view>用户头像:</view>
<open-data type="userAvatarUrl"></open-data>
<view>用户所在国家、省份、城市 :</view>
<open-data type="userCountry" lang="zh_CN"></open-data>
<open-data type="userProvince" lang="zh_CN"></open-data>
<open-data type="userCity" lang="zh_CN"></open-data>
<view>用户群:</view>
<open-data type="groupName" open-gid="xxxxxx"></open-data>