应用配置>功能配置->新增 * Tag_Profile_Custom_Hname:医院名称 * Tag_Profile_Custom_Title:医生职称 * @return bool * @throws GuzzleException */ public function setProfile(string $user_id,array $arg): bool { try { $profileItem = []; foreach ($arg as $key => $value){ $profileItem[] = [ 'Tag' => $key, 'Value' => $value ]; } $options = [ "json"=> [ "From_Account" => $user_id, "ProfileItem" => $profileItem, ] ]; $path = $this->config['base_url'] . $this->version . "/profile/portrait_set?" . $this->buildRequestParams(); $this->postRequest($path,$options); return true; }catch (\Exception $e) { throw new BusinessException($e->getMessage(), HttpEnumCode::SERVER_ERROR); } } /** * 拉取一个账户的多个资料 * @param string $user_id * @param array $arg * @return array|string[] * @throws GuzzleException */ public function getOneAccountPortraitList(string $user_id,array $arg = ['Tag_Profile_IM_Gender','Tag_Profile_Custom_Hname','Tag_Profile_Custom_Title']): array { try { $options = [ "json"=> [ "To_Account" => [$user_id], "TagList" => $arg, ] ]; $path = $this->config['base_url'] . $this->version . "/profile/portrait_get?" . $this->buildRequestParams(); $result = $this->postRequest($path,$options); if (!empty($result['UserProfileItem'])){ foreach ($result['UserProfileItem'] as $user_profile_item){ if(!empty($user_profile_item['ProfileItem'])){ $result_arg = array_column($user_profile_item['ProfileItem'],"Tag"); } } } if (empty($result_arg)){ return $arg; } return array_diff($arg,$result_arg); }catch (\Exception $e) { throw new BusinessException($e->getMessage(), HttpEnumCode::SERVER_ERROR); } } }