'Search 1688 Products', 'message' => 'You have successfully retrieved a list of products from 1688' ]; } /** * @param Request $request * @return JsonResponse * @throws ErrorException */ public function logic(Request $request) : JsonResponse { $result = Open1688Helper::productSearchKeyword($request->input('keyword'), $request->input('page')); return $this->response($result); } }