Criar rótulo da conta
Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Use este exemplo para criar um rótulo de conta.
Java
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package shopping.css.samples.v1.accountlabels;
import com.google.api.gax.core.FixedCredentialsProvider;
import com.google.auth.oauth2.GoogleCredentials;
import com.google.shopping.css.v1.AccountLabel;
import com.google.shopping.css.v1.AccountLabelsServiceClient;
import com.google.shopping.css.v1.AccountLabelsServiceSettings;
import com.google.shopping.css.v1.CreateAccountLabelRequest;
import shopping.css.samples.utils.Authenticator;
import shopping.css.samples.utils.Config;
/** This class demonstrates how to create an AccountLabel for a given parent account */
public class CreateAccountLabel {
private static String getName(String domainId) {
return String.format("accounts/%s", domainId);
}
public static void createAccountLabel(Config config) throws Exception {
GoogleCredentials credential = new Authenticator().authenticate();
AccountLabelsServiceSettings accountLabelsServiceSettings =
AccountLabelsServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(credential))
.build();
String name = getName(config.getDomainId().toString());
try (AccountLabelsServiceClient accountLabelsServiceClient =
AccountLabelsServiceClient.create(accountLabelsServiceSettings)) {
CreateAccountLabelRequest request =
CreateAccountLabelRequest.newBuilder()
.setParent(name)
.setAccountLabel(
AccountLabel.newBuilder()
.setDisplayName("Display Name")
.setDescription("Description")
.build())
.build();
System.out.println("Sending CreateAccountLabel request");
AccountLabel response = accountLabelsServiceClient.createAccountLabel(request);
System.out.println("Created AccountLabel below");
System.out.println(response);
} catch (Exception e) {
System.out.println(e);
}
}
public static void main(String[] args) throws Exception {
final Config config = Config.load();
createAccountLabel(config);
}
}
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\u003eThis code sample demonstrates how to create an Account Label in Java for the Comparison Shopping Service (CSS) API.\u003c/p\u003e\n"],["\u003cp\u003eIt utilizes the \u003ccode\u003eAccountLabelsServiceClient\u003c/code\u003e to send a \u003ccode\u003eCreateAccountLabelRequest\u003c/code\u003e with details like display name and description.\u003c/p\u003e\n"],["\u003cp\u003eThe sample requires authentication using GoogleCredentials and configuration settings from a Config object.\u003c/p\u003e\n"],["\u003cp\u003eAfter successful execution, it prints the created AccountLabel details to the console.\u003c/p\u003e\n"]]],[],null,["# Create Account Label\n\nUse this sample to create an Account Label. \n\n### Java\n\n // Copyright 2023 Google LLC\n //\n // Licensed under the Apache License, Version 2.0 (the \"License\");\n // you may not use this file except in compliance with the License.\n // You may obtain a copy of the License at\n //\n // https://www.apache.org/licenses/LICENSE-2.0\n //\n // Unless required by applicable law or agreed to in writing, software\n // distributed under the License is distributed on an \"AS IS\" BASIS,\n // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n // See the License for the specific language governing permissions and\n // limitations under the License.\n\n package shopping.css.samples.v1.accountlabels;\n\n import com.google.api.gax.core.FixedCredentialsProvider;\n import com.google.auth.oauth2.GoogleCredentials;\n import com.google.shopping.css.v1.AccountLabel;\n import com.google.shopping.css.v1.AccountLabelsServiceClient;\n import com.google.shopping.css.v1.AccountLabelsServiceSettings;\n import com.google.shopping.css.v1.CreateAccountLabelRequest;\n import shopping.css.samples.utils.Authenticator;\n import shopping.css.samples.utils.Config;\n\n /** This class demonstrates how to create an AccountLabel for a given parent account */\n public class CreateAccountLabel {\n\n private static String getName(String domainId) {\n return String.format(\"accounts/%s\", domainId);\n }\n\n public static void createAccountLabel(Config config) throws Exception {\n GoogleCredentials credential = new Authenticator().authenticate();\n\n AccountLabelsServiceSettings accountLabelsServiceSettings =\n AccountLabelsServiceSettings.newBuilder()\n .setCredentialsProvider(FixedCredentialsProvider.create(credential))\n .build();\n\n String name = getName(config.getDomainId().toString());\n\n try (AccountLabelsServiceClient accountLabelsServiceClient =\n AccountLabelsServiceClient.create(accountLabelsServiceSettings)) {\n\n CreateAccountLabelRequest request =\n CreateAccountLabelRequest.newBuilder()\n .setParent(name)\n .setAccountLabel(\n AccountLabel.newBuilder()\n .setDisplayName(\"Display Name\")\n .setDescription(\"Description\")\n .build())\n .build();\n\n System.out.println(\"Sending CreateAccountLabel request\");\n AccountLabel response = accountLabelsServiceClient.createAccountLabel(request);\n System.out.println(\"Created AccountLabel below\");\n System.out.println(response);\n } catch (Exception e) {\n System.out.println(e);\n }\n }\n\n public static void main(String[] args) throws Exception {\n final Config config = Config.load();\n\n createAccountLabel(config);\n }\n } \n https://github.com/googleads/comparison-shopping-service-api-samples/blob/2f511c3ca413bdbd497f89ae7468b3191dafaa6d/java/src/main/java/shopping/css/samples/v1/accountlabels/CreateAccountLabel.java"]]