Làm theo các bước trong hướng dẫn bắt đầu nhanh này và sau khoảng 10 phút, bạn sẽ có một ứng dụng dòng lệnh Java đơn giản giúp đưa ra các yêu cầu đến thiết bị tự động API đại lý đăng ký.
Điều kiện tiên quyết
Để chạy quy trình bắt đầu nhanh này, bạn cần có:
- Tài khoản Google là thành viên của đại lý thiết lập tự động tài khoản. Nếu bạn chưa tham gia, hãy làm theo các bước trong phần Bắt đầu trong Hướng dẫn về cổng thông tin dành cho người bán lại.
- Java 1.7 trở lên.
- Gradle 2.3 trở lên.
- Có quyền truy cập Internet và trình duyệt web.
Bước 1: Bật API đăng ký không tiếp xúc
- Sử dụng này trình hướng dẫn để tạo hoặc chọn dự án trong Google Developers Console và tự động bật API. Nhấp vào Tiếp tục, rồi nhấp vào Chuyển đến thông tin xác thực.
- Đặt Bạn sẽ truy cập vào dữ liệu nào? thành Dữ liệu ứng dụng.
- Nhấp vào Tiếp theo. Bạn sẽ được nhắc tạo tài khoản dịch vụ.
- Đặt tên mô tả cho Tên tài khoản dịch vụ.
- Hãy ghi lại Mã tài khoản dịch vụ (có dạng như địa chỉ email) vì bạn sẽ sử dụng mã này sau.
- Đặt Vai trò thành Tài khoản dịch vụ > Người dùng tài khoản dịch vụ.
- Nhấp vào Xong để hoàn tất việc tạo tài khoản dịch vụ.
- Nhấp vào địa chỉ email của tài khoản dịch vụ mà bạn đã tạo.
- Nhấp vào **Phím**.
- Nhấp vào **Thêm khoá**, rồi nhấp vào **Tạo khoá mới**.
- Đối với **Loại khoá**, hãy chọn **JSON**.
- Nhấp vào Tạo rồi tải khoá riêng tư xuống máy tính.
- Nhấp vào **Đóng**.
- Di chuyển tệp này vào thư mục đang hoạt động rồi đổi tên thành
service_account_key.json
.
Bước 2: Liên kết tài khoản dịch vụ
- Mở cổng thiết lập tự động. Bạn có thể cần phải đăng nhập.
- Nhấp vào Tài khoản dịch vụ.
- Nhấp vào Liên kết tài khoản dịch vụ.
- Đặt Địa chỉ email thành địa chỉ của tài khoản dịch vụ mà bạn đã tạo.
- Nhấp vào Liên kết tài khoản dịch vụ để sử dụng tài khoản dịch vụ mà bạn thiết lập tự động tài khoản đăng ký của bạn.
Bước 3: Chuẩn bị dự án
Hãy làm theo các bước bên dưới để thiết lập dự án Gradle của bạn:
Chạy lệnh sau để tạo một dự án mới trong thư mục đang làm việc:
gradle init --type basic mkdir -p src/main/java src/main/resources
Sao chép tệp
service_account_key.json
mà bạn đã tải xuống ở Bước 1 vào Thư mụcsrc/main/resources/
mà bạn đã tạo ở trên.Mở tệp
build.gradle
mặc định rồi thay thế nội dung của tệp đó bằng mã sau:apply plugin: 'java' apply plugin: 'application' mainClassName = 'ResellerQuickstart' sourceCompatibility = 1.7 targetCompatibility = 1.7 version = '1.0' repositories { mavenCentral() } dependencies { compile 'com.google.api-client:google-api-client:1.30.11' compile 'com.google.apis:google-api-services-androiddeviceprovisioning:+' compile 'com.google.oauth-client:google-oauth-client-jetty:+' }
Bước 4: Thiết lập mẫu
Tạo một tệp có tên src/main/java/ResellerQuickstart.java
rồi sao chép trong
sau đó mã và lưu tệp. Chèn mã đối tác đại lý của riêng bạn làm giá trị cho PARTNER_ID
(dòng đầu tiên của ứng dụng).
import com.google.api.client.auth.oauth2.Credential; import com.google.api.client.googleapis.auth.oauth2.GoogleCredential; 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.jackson2.JacksonFactory; 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.ListCustomersResponse; 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 * reseller API. */ public class ResellerQuickstart { // TODO: replace this with your partner reseller ID. private static long PARTNER_ID = 11036885; // Use a single scope for the all methods in the reseller API. private static final List<String> SCOPES = Arrays.asList("https://www.googleapis.com/auth/androidworkprovisioning"); private static final String APP_NAME = "Zero-touch Reseller Java Quickstart"; // Global shared instances. private static final JsonFactory JSON_FACTORY = JacksonFactory.getDefaultInstance(); private static HttpTransport HTTP_TRANSPORT; static { try { HTTP_TRANSPORT = GoogleNetHttpTransport.newTrustedTransport(); } catch (Throwable t) { t.printStackTrace(); System.exit(1); } } /** * Creates a Credential object with the correct OAuth2 authorization * for the service account that calls the reseller 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 the service account key from the JSON file. InputStream in = ResellerQuickstart.class.getResourceAsStream("/service_account_key.json"); // Create the credential scoped to the zero-touch enrollemnt // reseller APIs. GoogleCredential credential = GoogleCredential .fromStream(in) .createScoped(SCOPES); return credential; } /** * Builds and returns 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(); // Send an API request to list all our customers. AndroidProvisioningPartner.Partners.Customers.List request = service.partners().customers().list(PARTNER_ID); ListCustomersResponse response = request.execute(); // Print out the details of each customer. if (response.getCustomers() != null) { java.util.List<Company> customers = response.getCustomers(); for (Company customer : customers) { System.out.format("Name:%s ID:%d\n", customer.getCompanyName(), customer.getCompanyId()); } } else { System.out.println("No customers found"); } } }
Mã nhận dạng đối tác
Lệnh gọi API thường cần mã đối tác của đại lý làm đối số. Để tìm mã đối tác của bạn trong cổng đăng ký không tiếp xúc, hãy làm theo các bước dưới đây:
- Mở cổng. Bạn có thể cần phải đăng nhập.
- Nhấp vào Dịch vụ tài khoản.
- Sao chép mã đối tác trong dòng Mã đại lý của bạn.
Bước 5: Chạy mẫu
Sử dụng phần trợ giúp của hệ điều hành để chạy tập lệnh trong tệp. Trên UNIX và Mac máy tính, hãy chạy lệnh bên dưới trong cửa sổ dòng lệnh của bạn:
gradle -q run
Khắc phục sự cố
Hãy cho chúng tôi biết vấn đề trong phần bắt đầu nhanh và chúng tôi sẽ tìm cách khắc phục vấn đề. Để tìm hiểu cách chế độ không tiếp xúc sử dụng tài khoản dịch vụ để uỷ quyền cho các lệnh gọi API, hãy đọc phần Uỷ quyền.