WebResource
Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Um WebResource é uma representação de um site ou domínio verificado.
Ele contém o ID canônico de um site ou domínio, o URL ou nome de domínio e uma lista de proprietários. Observe que a lista de proprietários sempre inclui o usuário autenticado, porque as únicas pessoas que podem acessar um WebResource são usuários autenticados que são proprietários do site ou domínio.
Para ver uma lista de métodos desse recurso, consulte o final desta página.
Representações de recursos
{
"id": string,
"site": {
"type": string,
"identifier": string
},
"owners": [
string
]
}
Nome da propriedade |
Valor |
Descrição |
Observações |
id |
string |
A string usada para identificar este site. Esse valor precisa ser usado na parte id do URL REST para as operações get, update e delete. |
|
owners[] |
list |
Os endereços de e-mail de todos os proprietários diretos e verificados dessa propriedade. Os proprietários indiretos, por exemplo, os proprietários verificados do domínio que o contém, não estão incluídos nessa lista. |
|
site |
object |
Contêiner do endereço e do tipo de um site que foi verificado ou será verificado. |
|
site.identifier |
string |
O identificador do site, que assume formas diferentes, dependendo do valor da propriedade type . |
|
site.type |
string |
O tipo de site.
Os valores aceitáveis são:
- "
ANDROID_APP ": defina identifier como um URL de app Android. Example: "android-app://com.google.android.youtube/"
- "
INET_DOMAIN ": defina identifier como um nome de domínio. Exemplos: "www.example.com", "example.com" ou "subdomain.example.com"
- "
SITE ": defina identifier como um URL totalmente qualificado para a raiz do site, terminando com uma barra "/". Examples: "https://www.example.com/" ou "https://www.example.com/subsite/"
|
|
Métodos
Use o método insert para verificar a propriedade do usuário autenticado de um site ou domínio. Use os métodos get, update, e delete para recuperar ou modificar um recurso que já foi verificado para o usuário autenticado.
Você pode ver todos os recursos verificados do usuário autenticado com list e receber um token para colocar no site do usuário autenticado com getToken.
- delete
- Não verifica a propriedade do usuário de um site ou domínio.
- get
- Recupera os dados mais atuais de um site ou domínio.
- getToken.
- Recebe um token de verificação para o usuário autenticado colocar em um site ou domínio.
- inserir
- Verifica a propriedade de um site ou domínio.
- list
- Recebe a lista de sites e domínios verificados do usuário autenticado.
- update
- Modifica a lista de proprietários de um site ou domínio.
Exceto em caso de indicação contrária, o conteúdo desta página é licenciado de acordo com a Licença de atribuição 4.0 do Creative Commons, e as amostras de código são licenciadas de acordo com a Licença Apache 2.0. Para mais detalhes, consulte as políticas do site do Google Developers. Java é uma marca registrada da Oracle e/ou afiliadas.
Última atualização 2025-07-25 UTC.
[null,null,["Última atualização 2025-07-25 UTC."],[[["\u003cp\u003eA WebResource represents a verified website or domain and includes its ID, URL/domain, and a list of owners, which always includes the authenticated user.\u003c/p\u003e\n"],["\u003cp\u003eYou can verify ownership, retrieve, update, and delete WebResources using the provided methods.\u003c/p\u003e\n"],["\u003cp\u003eWebResource data includes an ID, owner list, and site information containing the identifier and type (e.g., website, Android app, domain).\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003esite.identifier\u003c/code\u003e can be a domain name, a URL, or an Android app URL depending on the \u003ccode\u003esite.type\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eSeveral methods are available to manage WebResources, including inserting (verifying ownership), retrieving data, updating owner lists, deleting, listing all verified resources, and getting a verification token.\u003c/p\u003e\n"]]],["A WebResource represents a verified website or domain, identified by an `id`, `site` (type and identifier), and a list of `owners`, which always includes the authenticated user. Key actions include using `insert` to verify ownership, `get`, `update`, and `delete` to manage existing resources, `list` to view verified sites, and `getToken` to obtain a verification token. Site `type` can be `ANDROID_APP`, `INET_DOMAIN`, or `SITE`, with corresponding identifier formats.\n"],null,["# WebResource\n\n\u003cbr /\u003e\n\nA WebResource is a representation of a verified website or domain.\n\n\u003cbr /\u003e\n\nIt contains the canonical ID of a site or domain, the URL or domain name, and a list of owners. Note that the owners list always includes the authenticated user, because the only people who can access a WebResource are authenticated users who are owners of that site or domain.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\nFor a list of [methods](#methods) for this resource, see the end of this page.\n\nResource representations\n------------------------\n\n\u003cbr /\u003e\n\n```carbon\n{\n \"id\": string,\n \"site\": {\n \"type\": string,\n \"identifier\": string\n },\n \"owners\": [\n string\n ]\n}\n```\n\n| Property name | Value | Description | Notes |\n|-------------------|----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------|\n| `id` | `string` | The string used to identify this site. This value should be used in the \u003cvar class=\"apiparam\" translate=\"no\"\u003eid\u003c/var\u003e portion of the REST URL for the [get](/site-verification/v1/webResource/get), [update](/site-verification/v1/webResource/update), and [delete](/site-verification/v1/webResource/delete) operations. | |\n| `owners[]` | `list` | The email addresses of all direct, verified owners of this exact property. Indirect owners---for example verified owners of the containing domain---are not included in this list. | |\n| `site` | `object` | Container for the address and type of a site that is verified or will be verified. | |\n| site.`identifier` | `string` | The site identifier, which takes different forms depending on the value of the `type` property. | |\n| site.`type` | `string` | The site type. \u003cbr /\u003e Acceptable values are: - \"`ANDROID_APP`\": Set `identifier` to an Android app URL. **Example:** \"android-app://com.google.android.youtube/\" - \"`INET_DOMAIN`\": Set `identifier` to a domain name. **Examples:** \"www.example.com\", \"example.com\" or \"subdomain.example.com\" - \"`SITE`\": Set `identifier` to a fully-qualified URL for your site root, ending in a / mark. **Examples:** \"https://www.example.com/\" or \"https://www.example.com/subsite/\" | |\n\nMethods\n-------\n\n\u003cbr /\u003e\n\nUse the [insert](/site-verification/v1/webResource/insert) method to verify the authenticated user's ownership of a website or domain. Use the [get](/site-verification/v1/webResource/get), [update](/site-verification/v1/webResource/update), and [delete](/site-verification/v1/webResource/delete) methods to retrieve or modify a resource that has already been verified for the authenticated user.\n\nYou can see all verified resources for the authenticated user with [list](/site-verification/v1/webResource/list), and you can get a token to place on the authenticated user's site with [getToken](/site-verification/v1/webResource/getToken).\n\n\u003cbr /\u003e\n\n[delete](/site-verification/v1/webResource/delete)\n: Unverifies the user's ownership of a website or domain.\n\n[get](/site-verification/v1/webResource/get)\n: Retrieves the most current data for a website or domain.\n\n[getToken](/site-verification/v1/webResource/getToken)\n: Gets a verification token for the authenticated user to place on a website or domain.\n\n[insert](/site-verification/v1/webResource/insert)\n: Verifies ownership of a website or domain.\n\n[list](/site-verification/v1/webResource/list)\n: Gets the list of the authenticated user's verified websites and domains.\n\n[update](/site-verification/v1/webResource/update)\n: Modifies the list of owners for a website or domain."]]