You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 24, 2020. It is now read-only.
function getOtherData(const resultPage: string): string;
var
elements: IHtmlElementList;
begin
try elements := ParserHTML(resultPage).Find('#page_info_wrap .page_name'); except end;
try if (Assigned(elements)) and (elements.Count > 0) then SetJSONValue(Result, 'fio', elements.Items[0].Text); except end;
try elements := ParserHTML(resultPage).Find('#page_avatar .page_avatar_img'); except end;
try if (Assigned(elements)) and (elements.Count > 0) then SetJSONValue(Result, 'avatar', elements.Items[0].Attributes['src']); except end;
end;