>  Q&A  >  본문

search.maven.org에서 최신 버전의 패키지를 검색하는 중 오류가 발생했습니다.

"오류: Maven 저장소에서 데이터를 검색할 수 없습니다"

search.maven.org에서도 최신 버전 번호를 검색하세요. 다음 PHP 코드는 다른 모든 패키지에 대해 수정하도록 작성되었습니다.

<?php
    $url = "https://search.maven.org/solrsearch/select?q=a:angus-activation-project&rows=1&wt=json";
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    $response = curl_exec($curl);
    curl_close($curl);

    if ($response === false) {
        echo "Error: Retrieving data from the Maven repository failed";
    } else {
        $data = json_decode($response);
    if ($data === null || !property_exists($data, 'response') || count($data->response->docs) == 0) {
        echo "Error: Failed to retrieve the latest version of the artifact from the Maven repository";
    } else {
        $latestVersion = $data->response->docs[0]->v;
        echo "Latest version is" . $latestVersion;
    }
    }
?>

P粉461599845P粉461599845220일 전1691

모든 응답(1)나는 대답할 것이다

  • P粉409742142

    P粉4097421422024-04-06 09:09:10

    다음을 추가하세요:

    으아악

    기본 사용자 에이전트와 함께 컬을 사용하면 maven은 403 Forbidden을 반환합니다. 이렇게 하면 귀하의 요청이 Firefox

    처럼 보일 것입니다.

    회신하다
    0
  • 취소회신하다