Method: pages.list
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
특정 URL 또는 조직의 ClaimReview
마크업 페이지를 나열합니다.
HTTP 요청
GET https://factchecktools.googleapis.com/v1alpha1/pages
URL은 gRPC 트랜스코딩 구문을 사용합니다.
쿼리 매개변수
매개변수 |
url |
string
ClaimReview 마크업을 가져올 URL입니다. 결과는 최대 1개입니다. 마크업이 제공된 URL의 더 표준적인 버전과 연결된 경우 해당 URL이 대신 반환됩니다. 조직과 함께 지정할 수 없습니다.
|
organization |
string
마크업을 가져오려는 조직입니다. 예를 들어 'site.com'입니다. URL과 함께 지정할 수 없습니다.
|
pageSize |
integer
페이지로 나누기 크기입니다. 최대 이 개수의 결과가 반환됩니다. 설정하지 않으면 기본값은 10입니다. URL이 요청된 경우에는 아무런 효과가 없습니다.
|
pageToken |
string
페이지로 나누기 토큰입니다. 다음 페이지를 가져오기 위해 이전 목록 요청에서 반환된 nextPageToken 를 제공할 수 있습니다(있는 경우). 다른 모든 필드는 이전 요청과 값이 동일해야 합니다.
|
offset |
integer
검색 결과에서 현재 오프셋 (즉, 시작 결과 위치)을 지정하는 정수입니다. 이 필드는 pageToken 이 설정되지 않고 요청이 특정 URL에 대한 것이 아닌 경우에만 고려됩니다. 예를 들어 0은 일치하는 첫 번째 결과부터 반환하고 10은 11번째 결과부터 반환한다는 의미입니다.
|
응답 본문
ClaimReview
마크업 목록의 응답입니다.
성공한 경우 응답 본문은 다음과 같은 구조의 데이터를 포함합니다.
필드 |
claimReviewMarkupPages[] |
object (ClaimReviewMarkupPage )
ClaimReview 마크업의 페이지 결과 목록입니다.
|
nextPageToken |
string
검색 응답에서 다음 페이지로 나누기 토큰입니다. 다음 요청에 pageToken 으로 사용해야 합니다. 비어 있는 값은 결과가 더 이상 없음을 의미합니다.
|
승인 범위
다음 OAuth 범위가 필요합니다.
https://www.googleapis.com/auth/factchecktools
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-26(UTC)
[null,null,["최종 업데이트: 2025-07-26(UTC)"],[[["\u003cp\u003eList \u003ccode\u003eClaimReview\u003c/code\u003e markup pages associated with a specific URL or an organization.\u003c/p\u003e\n"],["\u003cp\u003eRequest a list of \u003ccode\u003eClaimReview\u003c/code\u003e markup pages via the \u003ccode\u003eGET https://factchecktools.googleapis.com/v1alpha1/pages\u003c/code\u003e endpoint using parameters like \u003ccode\u003eurl\u003c/code\u003e, \u003ccode\u003eorganization\u003c/code\u003e, \u003ccode\u003epageSize\u003c/code\u003e, \u003ccode\u003epageToken\u003c/code\u003e, and \u003ccode\u003eoffset\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe response includes an array of \u003ccode\u003eClaimReviewMarkupPage\u003c/code\u003e objects and a \u003ccode\u003enextPageToken\u003c/code\u003e for pagination.\u003c/p\u003e\n"],["\u003cp\u003eThis functionality requires authorization with the \u003ccode\u003ehttps://www.googleapis.com/auth/factchecktools\u003c/code\u003e scope.\u003c/p\u003e\n"]]],[],null,["# Method: pages.list\n\n- [HTTP request](#body.HTTP_TEMPLATE)\n- [Query parameters](#body.QUERY_PARAMETERS)\n- [Request body](#body.request_body)\n- [Response body](#body.response_body)\n - [JSON representation](#body.ListClaimReviewMarkupPagesResponse.SCHEMA_REPRESENTATION)\n- [Authorization scopes](#body.aspect)\n- [Try it!](#try-it)\n\nList the `ClaimReview` markup pages for a specific URL or for an organization.\n\n### HTTP request\n\n`GET https://factchecktools.googleapis.com/v1alpha1/pages`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Query parameters\n\n| Parameters ||\n|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `url` | `string` The URL from which to get `ClaimReview` markup. There will be at most one result. If markup is associated with a more canonical version of the URL provided, we will return that URL instead. Cannot be specified along with an organization. |\n| `organization` | `string` The organization for which we want to fetch markups for. For instance, \"site.com\". Cannot be specified along with an URL. |\n| `pageSize` | `integer` The pagination size. We will return up to that many results. Defaults to 10 if not set. Has no effect if a URL is requested. |\n| `pageToken` | `string` The pagination token. You may provide the `nextPageToken` returned from a previous List request, if any, in order to get the next page. All other fields must have the same values as in the previous request. |\n| `offset` | `integer` An integer that specifies the current offset (that is, starting result location) in search results. This field is only considered if `pageToken` is unset, and if the request is not for a specific URL. For example, 0 means to return results starting from the first matching result, and 10 means to return from the 11th result. |\n\n### Request body\n\nThe request body must be empty.\n\n### Response body\n\nResponse from listing `ClaimReview` markup.\n\nIf successful, the response body contains data with the following structure:\n\n| JSON representation |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"claimReviewMarkupPages\": [ { object (/fact-check/tools/api/reference/rest/v1alpha1/pages#ClaimReviewMarkupPage) } ], \"nextPageToken\": string } ``` |\n\n| Fields ||\n|----------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `claimReviewMarkupPages[]` | `object (`[ClaimReviewMarkupPage](/fact-check/tools/api/reference/rest/v1alpha1/pages#ClaimReviewMarkupPage)`)` The result list of pages of `ClaimReview` markup. |\n| `nextPageToken` | `string` The next pagination token in the Search response. It should be used as the `pageToken` for the following request. An empty value means no more results. |\n\n### Authorization scopes\n\nRequires the following OAuth scope:\n\n- `https://www.googleapis.com/auth/factchecktools`"]]