使用 Microsoft Graph 建置 Java 應用程式
本教學課程會教導您如何建置使用 Microsoft Graph API 來代表使用者存取數據的 Java 控制台應用程式。
注意
若要瞭解如何使用 Microsoft Graph 來存取使用僅限應用程式驗證的數據,請參閱本 僅限應用程式的驗證教學課程。
在本教學課程中,您將:
提示
除了遵循本教學課程,您可以透過 快速入 門工具下載已完成的程序代碼,以自動化應用程式註冊和設定。 下載的程式代碼不需要修改即可運作。
您也可以下載或複製 GitHub 存放庫 ,並遵循自述檔中的指示來註冊應用程式並設定專案。
必要條件
開始本教學課程之前,您應該先在開發計算機上安裝 Java SE 開發工具包 (JDK) 和 Gradle 。
您也應該有具有 Exchange Online 信箱Microsoft公司或學校帳戶。 如果您沒有Microsoft 365 租使用者,您可能有資格透過 Microsoft 365 開發人員計劃;如需詳細資訊,請參閱 常見問題。 或者,您可以 註冊 1 個月的免費試用版,或購買Microsoft 365 方案。
注意
本教學課程是使用 OpenJDK 17.0.2 版和 Gradle 7.4.2 版所撰寫。 本指南中的步驟可能適用於其他版本,但尚未經過測試。
在入口網站中註冊應用程式
在此練習中,您將在 Azure Active Directory 中註冊新的應用程式,以啟用 用戶驗證。 您可以使用 Microsoft Entra 系統管理中心或使用 Microsoft Graph PowerShell SDK 來註冊應用程式。
註冊應用程式以進行用戶驗證
在本節中,您將使用 裝置程式代碼流程註冊支援使用者驗證的應用程式。
開啟瀏覽器並流覽至 Microsoft Entra 系統管理中心 ,並使用全域系統管理員帳戶登入。
選Microsoft左側導覽中的 [Entra ID ],依序展開 [ 身分識別]、[ 應用程式],然後選取 [ 應用程式註冊]。
選取 [新增註冊]。 輸入應用程式名稱,例如
Graph User Auth Tutorial
。視需要設定 支持的帳戶類型 。 選項如下:
選項 誰可以登入? 僅限此組織目錄中的帳戶 只有您Microsoft 365 組織中的使用者 任何組織目錄中的帳戶 任何Microsoft 365 組織中的使用者 (公司或學校帳戶) 任何組織目錄中的帳戶...和個人Microsoft帳戶 任何Microsoft 365 組織中的使用者 (公司或學校帳戶) 和個人Microsoft帳戶 將 [重新導向 URI ] 保留空白。
選取 [登錄]。 在應用程式的 [ 概觀] 頁面上,將應用程式 (用戶端的值複製 ) 標識 符並加以儲存,您將在下一個步驟中加以儲存。 如果您只針對支持的帳戶類型選擇 [此組織目錄中的帳戶],也請複製 [目錄 (租使用者) 標識符並加以儲存。
選取管理下的驗證。 找出 [ 進階設定] 區 段,並將 [ 允許公用用戶端流程 ] 切換為 [ 是],然後選擇 [ 儲存]。
注意
請注意,您未在應用程式註冊上設定任何 Microsoft Graph 許可權。 這是因為範例會使用 動態同意 來要求使用者驗證的特定許可權。
建立Java控制台應用程式
在本節中,您將建立基本的 Java 控制台應用程式。
在您要建立項目的目錄中, (CLI) 開啟命令行介面。 執行下列命令來建立新的 Gradle 專案。
gradle init --dsl groovy --test-framework junit --type java-application --project-name graphtutorial --package graphtutorial
建立項目之後,請執行下列命令以在 CLI 中執行應用程式,以確認其運作正常。
./gradlew --console plain run
如果可以運作,應用程式應該會輸出
Hello World.
。
安裝相依性
繼續之前,請新增一些您稍後將使用的額外相依性。
- 適用於 Java 的 Azure 身分識別用戶端連結庫 ,可驗證使用者並取得存取令牌。
- Microsoft Graph SDK for Java 呼叫 Microsoft Graph。
開啟 ./app/build.gradle。 更新 區
dependencies
段以新增這些相依性。dependencies { // Use JUnit test framework. testImplementation 'junit:junit:4.13.2' // This dependency is used by the application. implementation 'com.google.guava:guava:33.2.1-jre' implementation 'com.azure:azure-identity:1.13.0' implementation 'com.microsoft.graph:microsoft-graph:6.13.0' }
將下列內容新增至 ./app/build.gradle 的結尾。
run { standardInput = System.in }
下次建置專案時,Gradle 將會下載這些相依性。
載入應用程式設定
在本節中,您會將應用程式註冊的詳細數據新增至專案。
在 ./app/src/main/resources 目錄中建立名為 graphtutorial 的新目錄。
在名為 oAuth.properties 的 ./app/src/main/resources/graphtutorial 目錄中建立新檔案,並在該檔案中新增下列文字。
app.clientId=YOUR_CLIENT_ID_HERE app.tenantId=common app.graphUserScopes=user.read,mail.read,mail.send
根據下表更新值。
設定 值 app.clientId
應用程式註冊的用戶端識別碼 app.tenantId
如果您選擇只允許組織中的使用者登入的選項,請將此值變更為您的租使用者識別碼。 否則,請保留為 common
。重要
如果您使用 git 之類的原始檔控制,現在是從原始檔控制中排除 oAuth.properties 檔案的好時機,以避免不小心洩漏您的應用程式識別符。
設計應用程式
在本節中,您將建立簡單的控制台型功能表。
開啟 ./app/src/main/java/graphtutorial/App.java 並新增下列
import
語句。package graphtutorial; import java.io.IOException; import java.time.ZoneId; import java.time.format.DateTimeFormatter; import java.time.format.FormatStyle; import java.util.InputMismatchException; import java.util.Properties; import java.util.Scanner; import com.microsoft.graph.models.Message; import com.microsoft.graph.models.MessageCollectionResponse; import com.microsoft.graph.models.User;
以下列內容取代現有的
main
函數。public static void main(String[] args) { System.out.println("Java Graph Tutorial"); System.out.println(); final Properties oAuthProperties = new Properties(); try { oAuthProperties.load(App.class.getResourceAsStream("oAuth.properties")); } catch (IOException e) { System.out.println("Unable to read OAuth configuration. Make sure you have a properly formatted oAuth.properties file. See README for details."); return; } initializeGraph(oAuthProperties); greetUser(); Scanner input = new Scanner(System.in); int choice = -1; while (choice != 0) { System.out.println("Please choose one of the following options:"); System.out.println("0. Exit"); System.out.println("1. Display access token"); System.out.println("2. List my inbox"); System.out.println("3. Send mail"); System.out.println("4. Make a Graph call"); try { choice = input.nextInt(); } catch (InputMismatchException ex) { // Skip over non-integer input } input.nextLine(); // Process user choice switch(choice) { case 0: // Exit the program System.out.println("Goodbye..."); break; case 1: // Display access token displayAccessToken(); break; case 2: // List emails from user's inbox listInbox(); break; case 3: // Send an email message sendMail(); break; case 4: // Run any Graph code makeGraphCall(); break; default: System.out.println("Invalid choice"); } } input.close(); }
在文件尾新增下列佔位符方法。 您將在後續步驟中實作它們。
private static void initializeGraph(Properties properties) { // TODO } private static void greetUser() { // TODO } private static void displayAccessToken() { // TODO } private static void listInbox() { // TODO } private static void sendMail() { // TODO } private static void makeGraphCall() { // TODO }
這會實作基本功能表,並從命令行讀取用戶的選擇。
- 刪除 ./app/src/test/java/graphtutorial/AppTest.java。
新增用戶驗證
在本節中,您將擴充上一個練習中的應用程式,以支援使用 Azure AD 進行驗證。 這是取得必要的 OAuth 存取令牌以呼叫 Microsoft Graph 的必要專案。 在此步驟中,您會將 適用於 Java 的 Azure 身分識別用戶端連結庫 整合到應用程式中,並為 適用於 Java 的 Microsoft Graph SDK 設定驗證。
Azure 身分識別連結庫提供數個實作 OAuth2 令牌流程的 TokenCredential
類別。 Microsoft Graph 用戶端連結庫會使用這些類別來驗證對 Microsoft Graph 的呼叫。
設定 Graph 用戶端以進行用戶驗證
在本節中, DeviceCodeCredential
您將使用 類別,使用 裝置程式代碼流程來要求存取令牌。
在 名為 Graph.java 的 ./app/src/main/java/graphtutorial 目錄中 建立 新檔案,並將下列程式代碼新增至該檔案。
package graphtutorial; import java.util.List; import java.util.Properties; import java.util.function.Consumer; import com.azure.core.credential.AccessToken; import com.azure.core.credential.TokenRequestContext; import com.azure.identity.DeviceCodeCredential; import com.azure.identity.DeviceCodeCredentialBuilder; import com.azure.identity.DeviceCodeInfo; import com.microsoft.graph.models.BodyType; import com.microsoft.graph.models.EmailAddress; import com.microsoft.graph.models.ItemBody; import com.microsoft.graph.models.Message; import com.microsoft.graph.models.MessageCollectionResponse; import com.microsoft.graph.models.Recipient; import com.microsoft.graph.models.User; import com.microsoft.graph.serviceclient.GraphServiceClient; import com.microsoft.graph.users.item.sendmail.SendMailPostRequestBody;
新增空的 Graph 類別定義。
public class Graph { }
將下列程式代碼新增至 Graph 類別。
private static Properties _properties; private static DeviceCodeCredential _deviceCodeCredential; private static GraphServiceClient _userClient; public static void initializeGraphForUserAuth(Properties properties, Consumer<DeviceCodeInfo> challenge) throws Exception { // Ensure properties isn't null if (properties == null) { throw new Exception("Properties cannot be null"); } _properties = properties; final String clientId = properties.getProperty("app.clientId"); final String tenantId = properties.getProperty("app.tenantId"); final String[] graphUserScopes = properties.getProperty("app.graphUserScopes").split(","); _deviceCodeCredential = new DeviceCodeCredentialBuilder() .clientId(clientId) .tenantId(tenantId) .challengeConsumer(challenge) .build(); _userClient = new GraphServiceClient(_deviceCodeCredential, graphUserScopes); }
以下列內容取代 App.java 中的空白
initializeGraph
函式。private static void initializeGraph(Properties properties) { try { Graph.initializeGraphForUserAuth(properties, challenge -> System.out.println(challenge.getMessage())); } catch (Exception e) { System.out.println("Error initializing Graph for user auth"); System.out.println(e.getMessage()); } }
此程式代碼會宣告兩個 DeviceCodeCredential
私用屬性:對象和 GraphServiceClient
物件。 函 InitializeGraphForUserAuth
式會建立 的新實例 DeviceCodeCredential
,然後使用該實例來建立 的新實 GraphServiceClient
例。 每次透過 Microsoft Graph _userClient
進行 API 呼叫時,它都會使用提供的認證來取得存取令牌。
測試 DeviceCodeCredential
接下來,新增程式代碼以從 DeviceCodeCredential
取得存取令牌。
將下列函式新增至
Graph
類別。public static String getUserToken() throws Exception { // Ensure credential isn't null if (_deviceCodeCredential == null) { throw new Exception("Graph has not been initialized for user auth"); } final String[] graphUserScopes = _properties.getProperty("app.graphUserScopes").split(","); final TokenRequestContext context = new TokenRequestContext(); context.addScopes(graphUserScopes); final AccessToken token = _deviceCodeCredential.getTokenSync(context); return token.getToken(); }
以下列內容取代 App.java 中的空白
displayAccessToken
函式。private static void displayAccessToken() { try { final String accessToken = Graph.getUserToken(); System.out.println("Access token: " + accessToken); } catch (Exception e) { System.out.println("Error getting access token"); System.out.println(e.getMessage()); } }
建置並執行應用程式。 當系統提示您輸入選項時,請輸入
1
。 應用程式會顯示 URL 和裝置程式代碼。Java Graph Tutorial Please choose one of the following options: 0. Exit 1. Display access token 2. List my inbox 3. Send mail 4. Make a Graph call 1 To sign in, use a web browser to open the page https://microsoft.com/devicelogin and enter the code RB2RUD56D to authenticate.
開啟瀏覽器並瀏覽至顯示的 URL。 輸入提供的程式代碼並登入。
重要
流覽至
https://microsoft.com/devicelogin
時,請留意任何已登入瀏覽器的現有Microsoft 365 帳戶。 使用瀏覽器功能,例如配置檔、來賓模式或私人模式,以確保您驗證為您想要用於測試的帳戶。完成後,返回應用程式以查看存取令牌。
提示
僅供驗證和偵錯之用,您只能在 使用 Microsoft 的在線令牌剖析器https://jwt.ms,將公司或學校帳戶 (的使用者存取令牌譯碼) 。 如果您在呼叫 Microsoft Graph 時遇到令牌錯誤,這會很有用。 例如,確認
scp
令牌中的宣告包含預期的 Microsoft Graph 許可權範圍。
取得使用者
在本節中,您會將 Microsoft Graph 併入應用程式。 針對此應用程式,您將使用 Microsoft Graph Java 用戶端連結庫 來呼叫 Microsoft Graph。
開 啟 Graph.java ,並將下列函式新增至 Graph 類別。
public static User getUser() throws Exception { // Ensure client isn't null if (_userClient == null) { throw new Exception("Graph has not been initialized for user auth"); } return _userClient.me().get(requestConfig -> { requestConfig.queryParameters.select = new String[] {"displayName", "mail", "userPrincipalName"}; }); }
以下列內容取代 App.java 中的空白
greetUser
函式。private static void greetUser() { try { final User user = Graph.getUser(); // For Work/school accounts, email is in mail property // Personal accounts, email is in userPrincipalName final String email = user.getMail() == null ? user.getUserPrincipalName() : user.getMail(); System.out.println("Hello, " + user.getDisplayName() + "!"); System.out.println("Email: " + email); } catch (Exception e) { System.out.println("Error getting user"); System.out.println(e.getMessage()); } }
如果您現在執行應用程式,在您登入應用程式之後,會依名稱歡迎您。
Hello, Megan Bowen!
Email: MeganB@contoso.com
程式代碼說明
請考慮函式中的程序 greetUser
代碼。 這隻是幾行,但有一些重要詳細數據需要注意。
存取 'me'
函式會使用 _userClient.me
要求產生器,以建置對 Get 使用者 API 的要求。 此 API 有兩種方式可供存取:
GET /me
GET /users/{user-id}
在此情況下,程式代碼會呼叫 GET /me
API 端點。 這是在不知道使用者標識碼的情況下取得已驗證使用者的快捷方式。
注意
GET /me
因為 API 端點會取得已驗證的使用者,所以它只適用於使用使用者驗證的應用程式。 僅限應用程式的驗證應用程式無法存取此端點。
要求特定屬性
函式會在要求組態上使用 select
屬性來指定所需的屬性集。 這會將 $select查詢參數 新增至 API 呼叫。
強型別傳回型別
函式會傳回 com.microsoft.graph.models.User
從 API 的 JSON 回應還原串行化的物件。 因為程式代碼使用 select
,所以只有要求的屬性在傳回 User
的物件中會有值。 所有其他屬性都會有預設值。
清單收件匣
在本節中,您將新增在使用者的電子郵件收件匣中列出訊息的功能。
開 啟 Graph.java ,並將下列函式新增至 Graph 類別。
public static MessageCollectionResponse getInbox() throws Exception { // Ensure client isn't null if (_userClient == null) { throw new Exception("Graph has not been initialized for user auth"); } return _userClient.me() .mailFolders() .byMailFolderId("inbox") .messages() .get(requestConfig -> { requestConfig.queryParameters.select = new String[] { "from", "isRead", "receivedDateTime", "subject" }; requestConfig.queryParameters.top = 25; requestConfig.queryParameters.orderby = new String[] { "receivedDateTime DESC" }; }); }
以下列內容取代 App.java 中的空白
listInbox
函式。private static void listInbox() { try { final MessageCollectionResponse messages = Graph.getInbox(); // Output each message's details for (Message message: messages.getValue()) { System.out.println("Message: " + message.getSubject()); System.out.println(" From: " + message.getFrom().getEmailAddress().getName()); System.out.println(" Status: " + (message.getIsRead() ? "Read" : "Unread")); System.out.println(" Received: " + message.getReceivedDateTime() // Values are returned in UTC, convert to local time zone .atZoneSameInstant(ZoneId.systemDefault()).toLocalDateTime() .format(DateTimeFormatter.ofLocalizedDateTime(FormatStyle.SHORT))); } final Boolean moreMessagesAvailable = messages.getOdataNextLink() != null; System.out.println("\nMore messages available? " + moreMessagesAvailable); } catch (Exception e) { System.out.println("Error getting inbox"); System.out.println(e.getMessage()); } }
執行應用程式、登入,然後選擇選項 2 來列出您的收件匣。
Please choose one of the following options: 0. Exit 1. Display access token 2. List my inbox 3. Send mail 4. Make a Graph call 2 Message: Updates from Ask HR and other communities From: Contoso Demo on Yammer Status: Read Received: 12/30/2021, 4:54:54 AM Message: Employee Initiative Thoughts From: Patti Fernandez Status: Read Received: 12/28/2021, 5:01:10 PM Message: Voice Mail (11 seconds) From: Alex Wilber Status: Unread Received: 12/28/2021, 5:00:46 PM Message: Our Spring Blog Update From: Alex Wilber Status: Unread Received: 12/28/2021, 4:49:46 PM Message: Atlanta Flight Reservation From: Alex Wilber Status: Unread Received: 12/28/2021, 4:35:42 PM Message: Atlanta Trip Itinerary - down time From: Alex Wilber Status: Unread Received: 12/28/2021, 4:22:04 PM ... More messages available? true
程式代碼說明
請考慮函式中的程序 getInbox
代碼。
存取已知的郵件資料夾
函式會使用 _userClient.me().mailFolders().byMailFolderId("inbox").messages()
要求產生器,以建置 對清單訊息 API 的要求。 因為它包含 byMailFolderId("inbox")
要求產生器,所以 API 只會傳回所要求郵件資料夾中的訊息。 在此情況下,由於收件匣是使用者信箱內的預設已知資料夾,因此可透過其已知名稱存取。 非預設資料夾的存取方式相同,方法是將已知名稱取代為郵件資料夾的ID屬性。 如需可用已知資料夾名稱的詳細資訊,請參閱 mailFolder 資源類型。
存取集合
不同於 getUser
上一節傳回單一物件的 函式,這個方法會傳回訊息的集合。 Microsoft Graph 中傳回集合的大部分 API 不會在單一回應中傳回所有可用的結果。 相反地,他們會使用 分頁 來傳回部分結果,同時提供方法讓用戶端要求下一個「頁面」。
默認頁面大小
使用分頁的 API 會實作預設頁面大小。 對於訊息,預設值為10。 用戶端可以使用 $top 查詢參數來要求更多 (或更少 ) 。 在 getInbox
中,這是使用 top
要求組態中的 屬性來完成。
注意
中 top
設定的值是上限,而不是明確的數位。 API 會傳回一些訊息 ,最多可達 指定的值。
取得後續頁面
如果伺服器上有更多可用的結果,集合回應會包含具有 @odata.nextLink
API URL 的屬性,以存取下一頁。 Java 用戶端連結庫會將這個 公開為 getOdataNextLink
集合響應物件上的 方法。 如果這個方法傳回非 Null,則會有更多可用的結果。
排序集合
函式會在要求組態上使用 orderBy
屬性來要求依收到訊息的時間排序的結果, (receivedDateTime
屬性) 。 它包含 DESC
關鍵詞,因此會先列出最近收到的訊息。 這會將 $orderby查詢參數 新增至 API 呼叫。
傳送郵件
在本節中,您將新增以已驗證使用者身分傳送電子郵件訊息的功能。
開 啟 Graph.java ,並將下列函式新增至 Graph 類別。
public static void sendMail(String subject, String body, String recipient) throws Exception { // Ensure client isn't null if (_userClient == null) { throw new Exception("Graph has not been initialized for user auth"); } // Create a new message final Message message = new Message(); message.setSubject(subject); final ItemBody itemBody = new ItemBody(); itemBody.setContent(body); itemBody.setContentType(BodyType.Text); message.setBody(itemBody); final EmailAddress emailAddress = new EmailAddress(); emailAddress.setAddress(recipient); final Recipient toRecipient = new Recipient(); toRecipient.setEmailAddress(emailAddress); message.setToRecipients(List.of(toRecipient)); final SendMailPostRequestBody postRequest = new SendMailPostRequestBody(); postRequest.setMessage(message); // Send the message _userClient.me() .sendMail() .post(postRequest); }
以下列內容取代 App.java 中的空白
sendMail
函式。private static void sendMail() { try { // Send mail to the signed-in user // Get the user for their email address final User user = Graph.getUser(); final String email = user.getMail() == null ? user.getUserPrincipalName() : user.getMail(); Graph.sendMail("Testing Microsoft Graph", "Hello world!", email); System.out.println("\nMail sent."); } catch (Exception e) { System.out.println("Error sending mail"); System.out.println(e.getMessage()); } }
執行應用程式、登入,然後選擇選項 3 將電子郵件傳送給您自己。
Please choose one of the following options: 0. Exit 1. Display access token 2. List my inbox 3. Send mail 4. Make a Graph call 3 Mail sent.
注意
如果您使用 Microsoft 365 開發人員計劃中的開發人員租用戶進行測試,您傳送的電子郵件可能不會傳遞,而且您可能會收到未傳遞的報告。 如果您遇到這種情況,請透過 Microsoft 365 系統管理中心連絡支持人員。
若要確認已收到訊息,請選擇選項 2 以列出您的收件匣。
程式代碼說明
請考慮函式中的程序 sendMail
代碼。
傳送郵件
函式會使用 _userClient.me().sendMail()
要求產生器,以建置傳 送郵件 API 的要求。 要求產生器會採用 SendMailPostRequestBody
包含要傳送之訊息的物件。
建立物件
不同於先前對僅讀取數據的 Microsoft Graph 呼叫,此呼叫會建立數據。 若要使用用戶端連結庫來執行這項操作,您可以建立類別的實例,以代表在此案例中的數據 (, com.microsoft.graph.models.Message
) 使用 new
關鍵詞,設定所需的屬性,然後在 API 呼叫中傳送它。 因為呼叫正在傳送資料,所以 post
會使用 方法, get
而不是 。
選擇性:新增您自己的程序代碼
在本節中,您會將自己的 Microsoft Graph 功能新增至應用程式。 這可能是來自 Microsoft Graph 檔 或 Graph 總管的代碼段,或您所建立的程式碼。 此區段為選擇性。
更新應用程式
開 啟 Graph.java ,並將下列函式新增至 Graph 類別。
public static void makeGraphCall() { // INSERT YOUR CODE HERE }
以下列內容取代 App.java 中的空白
MakeGraphCallAsync
函式。private static void makeGraphCall() { try { Graph.makeGraphCall(); } catch (Exception e) { System.out.println("Error making Graph call"); System.out.println(e.getMessage()); } }
選擇 API
在您想要嘗試Microsoft圖形中尋找 API。 例如, 建立事件 API。 您可以使用 API 檔中的其中一個範例,也可以在 Graph 總管中自定義 API 要求,並使用產生的代碼段。
設定許可權
請查看所選取 API 參考檔的 [許可權] 區段, 以查看支援哪些驗證方法。 例如,某些 API 不支援僅限應用程式或個人Microsoft帳戶。
- 若要使用使用者驗證呼叫 API (如果 API 支援使用者 (委派的) 驗證) ,請在 oAuth.properties 中新增必要的許可權範圍。
- 若要使用僅限應用程式驗證來呼叫 API,請參閱 僅限應用程式驗證 教學課程。
新增您的程序代碼
將您的程式代碼複製到 makeGraphCallAsync
Graph.java 中的函 式。 如果您要從檔案或 Graph 總管複製代碼段,請務必將 重新命名 GraphServiceClient
為 _userClient
。
恭喜!
您已完成 Java Microsoft Graph 教學課程。 既然您有一個可呼叫 Microsoft Graph 的工作應用程式,您可以實驗並新增新功能。
- 瞭解如何搭配使用 僅限應用程式驗證 與 Microsoft Graph Java SDK。
- 請造訪 Microsoft Graph 概觀 ,以查看您可以使用 Microsoft Graph 存取的所有數據。
Java 範例
在這個區段有遇到問題嗎? 如果有,請提供意見反應,好讓我們可以改善這個區段。