이 문서에서는 관련 동작을 보여주는 계정을 식별하는 방법을 설명합니다. 예를 들어 악의적인 사용자가 만든 모든 사용자 계정을 식별할 수 있습니다. 관련 동작을 보여주는 계정, 계정 그룹, 계정 그룹 멤버십을 찾을 수 있습니다.
관련 동작을 보여주는 계정을 식별하면 이전에 합법적 계정이 악의적인 동작과 관련된 경우 허위 계정 및 계정 탈취 그룹을 찾을 수 있습니다.
이 기능은 reCAPTCHA Enterprise REST API 및 클라이언트 라이브러리를 통해서만 이용 가능합니다.
특정 계정 관련 계정 검색
지정된 계정과 관련된 계정 목록을 검색하려면 relatedaccountgroupmemberships.search
메서드를 사용하세요.
요청 데이터를 사용하기 전에 다음을 바꿉니다.
- PROJECT_ID: Google Cloud 프로젝트 ID입니다.
- ACCOUNT_ID: 웹사이트의 사용자 계정에 대해 해당 사용자 계정과 고유하게 연결된 식별자입니다.
- PAGE_SIZE: (선택사항) 응답에 포함할 계정 멤버십 수입니다. 기본값은 50이고 최댓값은 1,000입니다. 계정 멤버십 수가 페이지 크기보다 크면 다음 결과 페이지를 검색하는 데 사용할 수 있는 페이지로 나누기 토큰이 응답에 포함됩니다.
- NEXT_PAGE_TOKEN: 선택사항. 이 메서드의 이전 응답에서 반환된
nextPageToken
의 값입니다. 더 많은 계정 멤버십을 쿼리하려면 이 매개변수를 지정하세요.
HTTP 메서드 및 URL:
POST https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/relatedaccountgroupmemberships:search?page_size=PAGE_SIZE&page_token=NEXT_PAGE_TOKEN
JSON 요청 본문:
{ "accountId": "ACCOUNT_ID" }
요청을 보내려면 다음 옵션 중 하나를 선택합니다.
curl
요청 본문을 request.json
파일에 저장하고 다음 명령어를 실행합니다.
curl -X POST \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
-H "Content-Type: application/json; charset=utf-8" \
-d @request.json \
"https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/relatedaccountgroupmemberships:search?page_size=PAGE_SIZE&page_token=NEXT_PAGE_TOKEN"
PowerShell
요청 본문을 request.json
파일에 저장하고 다음 명령어를 실행합니다.
$cred = gcloud auth print-access-token
$headers = @{ "Authorization" = "Bearer $cred" }
Invoke-WebRequest `
-Method POST `
-Headers $headers `
-ContentType: "application/json; charset=utf-8" `
-InFile request.json `
-Uri "https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/relatedaccountgroupmemberships:search?page_size=PAGE_SIZE&page_token=NEXT_PAGE_TOKEN" | Select-Object -Expand Content
다음과 비슷한 JSON 응답이 표시됩니다.
{ "relatedAccountGroupMemberships": [ { "name": "projects/projectId/relatedaccountgroups/groupId187/memberships/membershipId95", "accountId": "4RopXS59" }, { "name": "projects/projectId/relatedaccountgroups/groupId91/memberships/membershipId23", "accountId": "HVMv1DTb" } ], "nextPageToken": "Q2N_rZgxUXOjNZtK1T1i0Q" }
코드 샘플
관련 계정 그룹 검색
유사한 동작의 계정 그룹 목록을 검색하려면 relatedaccountgroups.list
메서드를 사용합니다.
요청 데이터를 사용하기 전에 다음을 바꿉니다.
- PROJECT_ID: Google Cloud 프로젝트 ID입니다.
- PAGE_SIZE: 선택사항. 응답에 포함할 계정 그룹 수입니다. 기본값은 50이고 최댓값은 1,000입니다. 계정 그룹 수가 페이지 크기보다 크면 다음 결과 페이지를 검색하는 데 사용할 수 있는 페이지로 나누기 토큰이 응답에 포함됩니다.
- NEXT_PAGE_TOKEN: 선택사항. 이 메서드의 이전 응답에서 반환된
nextPageToken
의 값입니다. 더 많은 계정 그룹을 쿼리하려면 이 매개변수를 지정하세요.
HTTP 메서드 및 URL:
GET https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/relatedaccountgroups?page_size=PAGE_SIZE&page_token=NEXT_PAGE_TOKEN
요청을 보내려면 다음 옵션 중 하나를 선택합니다.
curl
다음 명령어를 실행합니다.
curl -X GET \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
"https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/relatedaccountgroups?page_size=PAGE_SIZE&page_token=NEXT_PAGE_TOKEN"
PowerShell
다음 명령어를 실행합니다.
$cred = gcloud auth print-access-token
$headers = @{ "Authorization" = "Bearer $cred" }
Invoke-WebRequest `
-Method GET `
-Headers $headers `
-Uri "https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/relatedaccountgroups?page_size=PAGE_SIZE&page_token=NEXT_PAGE_TOKEN" | Select-Object -Expand Content
다음과 비슷한 JSON 응답이 표시됩니다.
{ "relatedAccountGroups": [ { "name": "projects/projectId/relatedaccountgroups/groupId1" }, { "name": "projects/projectId/relatedaccountgroups/groupId2" } ], "nextPageToken": "BenimQwKzIOibbOO2Lhisw" }
코드 샘플
관련 계정 그룹 멤버십 검색
유사한 동작의 계정 그룹 멤버십 목록을 검색하려면 relatedaccountgroupmemberships.list
메서드를 사용합니다.
요청 데이터를 사용하기 전에 다음을 바꿉니다.
- PROJECT_ID: Google Cloud 프로젝트 ID입니다.
- GROUP_ID: 관련 멤버십을 찾으려는 계정 그룹의 이름입니다.
- PAGE_SIZE: 선택사항. 응답에 포함할 계정 그룹 멤버십 수입니다. 기본값은 50이고 최댓값은 1,000입니다. 계정 그룹 멤버십 수가 페이지 크기보다 크면 다음 결과 페이지를 검색하는 데 사용할 수 있는 페이지로 나누기 토큰이 응답에 포함됩니다.
- NEXT_PAGE_TOKEN: 선택사항. 이 메서드의 이전 응답에서 반환된
nextPageToken
의 값입니다. 더 많은 계정 그룹 멤버십을 쿼리하려면 이 매개변수를 지정하세요.
HTTP 메서드 및 URL:
GET https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/relatedaccountgroups/GROUP_ID/memberships?page_size=PAGE_SIZE&page_token=NEXT_PAGE_TOKEN
요청을 보내려면 다음 옵션 중 하나를 선택합니다.
curl
다음 명령어를 실행합니다.
curl -X GET \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
"https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/relatedaccountgroups/GROUP_ID/memberships?page_size=PAGE_SIZE&page_token=NEXT_PAGE_TOKEN"
PowerShell
다음 명령어를 실행합니다.
$cred = gcloud auth print-access-token
$headers = @{ "Authorization" = "Bearer $cred" }
Invoke-WebRequest `
-Method GET `
-Headers $headers `
-Uri "https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/relatedaccountgroups/GROUP_ID/memberships?page_size=PAGE_SIZE&page_token=NEXT_PAGE_TOKEN" | Select-Object -Expand Content
다음과 비슷한 JSON 응답이 표시됩니다.
{ "relatedAccountGroupMemberships": [ { "name": "projects/projectId/relatedaccountgroups/groupId/memberships/membershipId1", "accountId": "4RopXS59" }, { "name": "projects/projectId/relatedaccountgroups/groupId/memberships/membershipId2", "accountId": "HVMv1DTb" } ], "nextPageToken": "WPuIn8GHU3JvcJqgvmE7Aw" }
코드 샘플
다음 단계
다음 계정 보호 기능에 대해 알아보기