WeChat public platform - user management

WeChat public platform - user management

User management includes obtaining basic user information, obtaining a follower list, obtaining a user's geographic location, and managing user groups.

1. Get the user list

copy code
const
FansListUrl = 'https://api.weixin.qq.com/cgi-bin/user/get?access_token=%s&next_openid=%s';

function GetOpenIDList(AccessToken, NextOpenID: String): TStringList;
where
  Url: string;
  J: TJSONObject;
  Or: TJSONArray;
  temp: String;
begin
  Result := TStringList.Create;
  Url := Format(FansListUrl, [AccessToken, NextOpenID]);
  J := TJSONObject.ParseJSONValue(GetMethod(Url, 1)) as TJSONObject;
  try
    if J.Count > 0 then
    begin
      Total := J.GetValue('total').Value.ToInteger;
      Count := J.GetValue('count').Value.ToInteger;
      Next_OpenID := J.GetValue('next_openid').Value;

      J := J.GetValue('data') as TJSONObject;
      if J.Count > 0 then
      begin
        O := J.GetValue('openid') as TJSONArray;
        if O.Count > 0 then
        begin
          temp := O.ToString;
          delete(temp, 1, 1);
          delete(temp, Length(temp), 1);
          Result.DelimitedText := temp;
        end;
      end;
    end;
  finally
    J.Free;
  end;
end;
copy code

2. Obtain user information

copy code
function UnixTime(DTime: TDateTime): longint;
begin
  Result := Trunc((DTime - EncodeDate(1970, 1, 1)) * SecsPerDay);
end;

function DelphiTime(const USec: longint): TDateTime;
begin
  Result := (USec / SecsPerDay) + EncodeDate(1970, 1, 1);
end;
copy code

 

copy code
  TFansInfo = record
    SubScribe:Byte;
    OpenID:String;
    NickName:String;
    Sex:Byte;
    City:String;
    Province:String;
    Cuntry:String;
    Language:String;
    HeadImgUrl:String;
    SubScribeTime:TDateTime;
    Remark:String;
  end;

const
FansInfoUrl = 'https://api.weixin.qq.com/cgi-bin/user/info?access_token=%s&openid=%s&lang=zh_CN';

function GetFansInfo(OpenID: String): TFansInfo;
where
  Url: string;
  J: TJSONObject;
begin
  Url := Format(FansInfoUrl, [Access_Token, OpenID]);
  J := TJSONObject.ParseJSONValue(GetMethod(Url, 1)) as TJSONObject;
  try
    if J.Count > 0 then
    begin
      Result.SubScribe := J.GetValue('subscribe').Value.ToInteger;
      Result.OpenID := J.GetValue('openid').Value;
      Result.NickName := J.GetValue('nickname').Value;
      Result.Sex := J.GetValue('sex').Value.ToInteger;
      Result.City := J.GetValue('city').Value;
      Result.Province := J.GetValue('province').Value;
      Result.Cuntry := J.GetValue('country').Value;
      Result.Language := J.GetValue('language').Value;
      Result.HeadImgUrl := J.GetValue('headimgurl').Value;
      Result.SubScribeTime := DelphiTime(J.GetValue('subscribe_time')
        .Value.ToInteger);
      Result.Remark := J.GetValue('remark').Value;
    end;
  finally
    J.Free;
  end;
end;

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325289957&siteId=291194637