- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- CrawledUrl
- Try it!
List CrawledUrls under a given ScanRun.
HTTP request
GET https://websecurityscanner.googleapis.com/v1beta/{parent=projects/*/scanConfigs/*/scanRuns/*}/crawledUrls
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
Required. The parent resource name, which should be a scan run resource name in the format 'projects/{projectId}/scanConfigs/{scanConfigId}/scanRuns/{scanRunId}'. Authorization requires the following IAM permission on the specified resource
|
Query parameters
Parameters | |
---|---|
page |
A token identifying a page of results to be returned. This should be a |
page |
The maximum number of CrawledUrls to return, can be limited by server. If not specified or not positive, the implementation will select a reasonable value. |
Request body
The request body must be empty.
Response body
Response for the crawledUrls.list
method.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"crawledUrls": [
{
object ( |
Fields | |
---|---|
crawled |
The list of CrawledUrls returned. |
next |
Token to retrieve the next page of results, or empty if there are no more results in the list. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.
CrawledUrl
A CrawledUrl resource represents a URL that was crawled during a ScanRun. Web Security Scanner Service crawls the web applications, following all links within the scope of sites, to find the URLs to test against.
JSON representation |
---|
{ "httpMethod": string, "url": string, "body": string } |
Fields | |
---|---|
http |
The http method of the request that was used to visit the URL, in uppercase. |
url |
The URL that was crawled. |
body |
The body of the request that was used to visit the URL. |