Sigue los pasos de esta guía de inicio rápido y, en unos 10 minutos, tendrás una app de línea de comandos de Java simple que realice solicitudes a la API de cliente de inscripción sin intervención.
Requisitos previos
Para ejecutar esta guía de inicio rápido, necesitas lo siguiente:
- Una Cuenta de Google que sea miembro de la cuenta de cliente de inscripción automática Consulta Cómo comenzar.
- Java 1.7 o superior
- Gradle 2.3 o versiones posteriores
- Acceso a Internet y un navegador web
Paso 1: Activa la API de inscripción sin intervención
- Usa este asistente para crear o seleccionar un proyecto en Google Play Console y activar automáticamente la API. Haz clic en Continuar y, luego, en Ir a credenciales.
- Haz clic en Cancelar en Crear credenciales.
- En la parte superior de la página, seleccione la pestaña OAuth consent screen. Selecciona una dirección de correo electrónico, ingresa un Nombre del producto si aún no lo hiciste y haz clic en el botón Guardar.
- Selecciona la pestaña Credentials, haz clic en el botón Create credentials y selecciona OAuth client ID.
- Selecciona el tipo de aplicación Otro, ingresa el nombre "Instructivo" y haz clic en el botón Crear.
- Haz clic en Aceptar para descartar el panel Cliente de OAuth.
- Haz clic en Descargar JSON.
- Mueve el archivo a tu directorio de trabajo y cámbiale el nombre a
client_secret.json
.
Paso 2: Prepara el proyecto
Sigue estos pasos para configurar tu proyecto de Gradle:
Ejecuta el siguiente comando para crear un nuevo proyecto en el directorio de trabajo:
gradle init --type basic mkdir -p src/main/java src/main/resources
Copia el archivo
client_secret.json
que descargaste en el paso 1 en el directoriosrc/main/resources/
que creaste anteriormente.Abre el archivo
build.gradle
predeterminado y reemplaza su contenido por el siguiente código:
apply plugin: 'java' apply plugin: 'application' mainClassName = 'CustomerQuickstart' sourceCompatibility = 1.7 targetCompatibility = 1.7 version = '1.0' repositories { mavenCentral() } dependencies { compile 'com.google.api-client:google-api-client:2.2.0' compile 'com.google.apis:google-api-services-androiddeviceprovisioning:v1-rev20230509-2.0.0' compile 'com.google.oauth-client:google-oauth-client-jetty:1.34.1' }
Paso 3: Configura la muestra
Crea un archivo llamado src/main/java/CustomerQuickstart.java
, cópialo en el siguiente código y guárdalo.
import com.google.api.client.auth.oauth2.Credential; import com.google.api.client.extensions.java6.auth.oauth2.AuthorizationCodeInstalledApp; import com.google.api.client.extensions.jetty.auth.oauth2.LocalServerReceiver; import com.google.api.client.googleapis.auth.oauth2.GoogleAuthorizationCodeFlow; import com.google.api.client.googleapis.auth.oauth2.GoogleClientSecrets; import com.google.api.client.googleapis.javanet.GoogleNetHttpTransport; import com.google.api.client.http.HttpTransport; import com.google.api.client.json.JsonFactory; import com.google.api.client.json.gson.GsonFactory; import com.google.api.client.util.store.FileDataStoreFactory; import com.google.api.services.androiddeviceprovisioning.v1.AndroidProvisioningPartner; import com.google.api.services.androiddeviceprovisioning.v1.model.Company; import com.google.api.services.androiddeviceprovisioning.v1.model.CustomerListCustomersResponse; import com.google.api.services.androiddeviceprovisioning.v1.model.CustomerListDpcsResponse; import com.google.api.services.androiddeviceprovisioning.v1.model.Dpc; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.Arrays; import java.util.List; /** This class forms the quickstart introduction to the zero-touch enrollemnt customer API. */ public class CustomerQuickstart { // A single auth scope is used for the zero-touch enrollment customer API. private static final List<String> SCOPES = Arrays.asList("https://www.googleapis.com/auth/androidworkzerotouchemm"); private static final String APP_NAME = "Zero-touch Enrollment Java Quickstart"; private static final java.io.File DATA_STORE_DIR = new java.io.File(System.getProperty("user.home"), ".credentials/zero-touch.quickstart.json"); // Global shared instances private static FileDataStoreFactory DATA_STORE_FACTORY; private static final JsonFactory JSON_FACTORY = GsonFactory.getDefaultInstance(); private static HttpTransport HTTP_TRANSPORT; static { try { HTTP_TRANSPORT = GoogleNetHttpTransport.newTrustedTransport(); DATA_STORE_FACTORY = new FileDataStoreFactory(DATA_STORE_DIR); } catch (Throwable t) { t.printStackTrace(); System.exit(1); } } /** * Creates a Credential object with the correct OAuth2 authorization for the user calling the * customer API. The service endpoint invokes this method when setting up a new service instance. * * @return an authorized Credential object. * @throws IOException */ public static Credential authorize() throws IOException { // Load client secrets. InputStream in = CustomerQuickstart.class.getResourceAsStream("/client_secret.json"); GoogleClientSecrets clientSecrets = GoogleClientSecrets.load(JSON_FACTORY, new InputStreamReader(in, "UTF-8")); // Ask the user to authorize the request using their Google Account // in their browser. GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(HTTP_TRANSPORT, JSON_FACTORY, clientSecrets, SCOPES) .setDataStoreFactory(DATA_STORE_FACTORY) .setAccessType("offline") .build(); Credential credential = new AuthorizationCodeInstalledApp(flow, new LocalServerReceiver()).authorize("user"); System.out.println("Credential file saved to: " + DATA_STORE_DIR.getAbsolutePath()); return credential; } /** * Build and return an authorized zero-touch enrollment API client service. Use the service * endpoint to call the API methods. * * @return an authorized client service endpoint * @throws IOException */ public static AndroidProvisioningPartner getService() throws IOException { Credential credential = authorize(); return new AndroidProvisioningPartner.Builder(HTTP_TRANSPORT, JSON_FACTORY, credential) .setApplicationName(APP_NAME) .build(); } /** * Runs the zero-touch enrollment quickstart app. * * @throws IOException */ public static void main(String[] args) throws IOException { // Create a zero-touch enrollment API service endpoint. AndroidProvisioningPartner service = getService(); // Get the customer's account. Because a customer might have more // than one, limit the results to the first account found. AndroidProvisioningPartner.Customers.List accountRequest = service.customers().list(); accountRequest.setPageSize(1); CustomerListCustomersResponse accountResponse = accountRequest.execute(); if (accountResponse.getCustomers().isEmpty()) { // No accounts found for the user. Confirm the Google Account // that authorizes the request can access the zero-touch portal. System.out.println("No zero-touch enrollment account found."); System.exit(-1); } Company customer = accountResponse.getCustomers().get(0); String customerAccount = customer.getName(); // Send an API request to list all the DPCs available using the customer account. AndroidProvisioningPartner.Customers.Dpcs.List request = service.customers().dpcs().list(customerAccount); CustomerListDpcsResponse response = request.execute(); // Print out the details of each DPC. java.util.List<Dpc> dpcs = response.getDpcs(); for (Dpc dpcApp : dpcs) { System.out.format("Name:%s APK:%s\n", dpcApp.getDpcName(), dpcApp.getPackageName()); } } }
Paso 4: Ejecuta la muestra
Usa la ayuda de tu sistema operativo para ejecutar la secuencia de comandos en el archivo. En computadoras con UNIX y Mac, ejecuta el siguiente comando en la terminal:
gradle -q run
La primera vez que ejecutes la app, deberás autorizar el acceso:
- La app intenta abrir una pestaña nueva en tu navegador predeterminado. Si esto falla, copia la URL de la consola y ábrela en tu navegador. Si aún no accediste a tu Cuenta de Google, se te solicitará que lo hagas. Si accediste a varias Cuentas de Google, la página te solicitará que selecciones una para la autorización.
- Haz clic en Aceptar.
- Cierra la pestaña del navegador. La app seguirá ejecutándose.
Notas
- Como la biblioteca cliente de la API de Google almacena datos de autorización en el sistema de archivos, los lanzamientos posteriores no te solicitan autorización.
- Para restablecer los datos de autorización de la app, borra el archivo
~/.credentials/zero-touch.quickstart.json
y vuelve a ejecutar la app. - El flujo de autorización de esta guía de inicio rápido es ideal para una app de línea de comandos. Para aprender a agregar autorización a una app web, consulta Aplicaciones de servidor web de OAuth 2.0.
Solución de problemas
Estos son algunos aspectos comunes que debes verificar. Cuéntanos qué salió mal con la guía de inicio rápido y trabajaremos para solucionarlo.
- Verifica que estés autorizando las llamadas a la API con la misma Cuenta de Google que es miembro de la cuenta de cliente de inscripción automática. Intenta acceder al portal de inscripción automática con la misma Cuenta de Google para probar tu acceso.
- Confirma que la cuenta haya aceptado las Condiciones del Servicio más recientes en el portal. Consulta Cuentas de cliente.