$corpid, 'token' => $token, 'cursor' => $cursor, 'limit' => $limit, 'voice_format' => $voiceFormat, 'access_token' => $accessToken ], 'SyncChatMsg'); return false; } # 获取外部联系人详情信息API $requestUri = config('qyWechat.sync_chat_msg'); $requestUri .= $accessToken; $postData = array( 'token' => $token, 'limit' => $limit, 'voice_format' => $voiceFormat ); if($cursor) $postData['cursor'] = $cursor; Log::logInfo('请求参数:', $postData, '05-05Sync'); $response = HttpService::httpPost($requestUri, json_encode($postData)); $responseData = json_decode($response, true); Log::logInfo('响应结果:', $responseData, '05-05Sync'); return $responseData; } }