Skip to content

Commit 01e61d7

Browse files
committed
minor fixes
1 parent f549b37 commit 01e61d7

2 files changed

Lines changed: 19 additions & 25 deletions

File tree

docs/integration/considerations-unattended-automation-office-microsoft-365-for-unattended-RPA.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
22
title: "Considerations for unattended automation of Office in the Microsoft 365 for unattended RPA environment"
3-
3+
manager: lindalu
44
ms.date: 03/30/2020
5-
ms.audience: Developer
6-
5+
ms.audience: Developer
76
ms.localizationpriority: medium
87
description: "Considerations for unattended automation of Office in the Microsoft 365 for unattended RPA environment."
98
---
@@ -63,7 +62,7 @@ Microsoft strongly recommends a few alternatives that do not require Office to b
6362

6463
The Microsoft Graph API provides access to the services, data, and intelligence that are available to users and solutions as part of the Microsoft cloud, including many services supporting the needs of unattended automation: access to users’ mail / calendar / contacts / files, document conversion, Excel workbook calculation, and more. These services are designed for unattended use and high-scale access, and utilize a standard RESTful API syntax. For more information on Microsoft Graph and how to use it to work with users’ data, visit the following:
6564

66-
- [Overview of Microsoft Graph](/graph/overview)
65+
- [Overview of Microsoft Graph](/graph/overview)
6766
- [Get started with Microsoft Graph](https://developer.microsoft.com/graph/get-started)
6867
- [Download a file in another format](/graph/api/driveitem-get-content-format?view=graph-rest-1.0&tabs=http&preserve-view=true) (file conversion)
6968
- [Working with Excel in Microsoft Graph](/graph/api/resources/excel) (workbook details)

docs/integration/integrate-with-office-from-android-applications.md

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
---
2-
title: "Integrate with Office from Android applications"
3-
4-
2+
title: "Integrate with Office from Android applications"
53
manager: lindalu
64
ms.date: 06/18/2015
7-
ms.audience: Developer
8-
9-
5+
ms.audience: Developer
106
ms.localizationpriority: medium
117
ms.assetid: a765fa49-a272-4047-9147-59cc68e5dd27
128
description: "Office for Android provides an extensible solution that enables integration with third-party applications. You can integrate with Office from your Android application by passing users from your application to Office."
@@ -25,19 +21,19 @@ When a user is done editing a file, they can choose the back key on the device t
2521
Your referring application will first need to verify that a particular Office application is installed. The following Office applications can be installed on Android devices for document viewing and editing:
2622

2723
- Excel
28-
24+
2925
- PowerPoint
30-
26+
3127
- Word
32-
28+
3329
Use Android PackageManager to determine whether a particular Office application is installed on the device. The following table lists the package names for the Office applications that you can use in this process.
3430

3531
|**Application**|**Package name**|
3632
|:-----|:-----|
3733
|Excel <br/> |com.microsoft.office.excel <br/> |
3834
|PowerPoint <br/> |com.microsoft.office.powerpoint <br/> |
3935
|Word <br/> |com.microsoft.office.word <br/> |
40-
36+
4137
### Prompt the user to install Office
4238

4339
If a particular Office application is not installed, you can prompt the user to install the application. The following table lists the available install locations for Office applications.
@@ -47,17 +43,17 @@ If a particular Office application is not installed, you can prompt the user to
4743
|Excel <br/> |[https://play.google.com/store/apps/details?id=com.microsoft.office.excel](https://play.google.com/store/apps/details?id=com.microsoft.office.excel) <br/> |
4844
|PowerPoint <br/> |[https://play.google.com/store/apps/details?id=com.microsoft.office.powerpoint](https://play.google.com/store/apps/details?id=com.microsoft.office.powerpoint) <br/> |
4945
|Word <br/> |[https://play.google.com/store/apps/details?id=com.microsoft.office.word](https://play.google.com/store/apps/details?id=com.microsoft.office.word) <br/> |
50-
46+
5147
## Invoke Office
5248

5349
When the Office application is installed, your referring application can invoke Office by passing the following details:
5450

5551
- Office protocol
56-
52+
5753
- Open mode
58-
54+
5955
- URL
60-
56+
6157
Schema format:
6258

6359
`<Office protocol><open mode>|u|<URL>`
@@ -89,24 +85,23 @@ Schema format:
8985
The URL includes three parts:
9086

9187
- The declaration that the file will be opened for edit (ofe)
92-
88+
9389
- The URL descriptor (|u|)
94-
90+
9591
- The URL
96-
92+
9793
The URL has to be encoded and must be a direct link to the file (not a redirect). If the URL is in a format that Office cannot handle, or the download simply fails, Office will not return the user to the invoking application.
9894

9995
Schema format:
10096

10197
`|u|<document URL>`
10298

10399
## See also
100+
104101
<a name="bk_addresources"> </a>
105102

106103
- [Integrate with Office](integrate-with-office.md)
107-
104+
108105
- [PackageManager](https://developer.android.com/reference/android/content/pm/PackageManager.html)
109-
110-
- [GetPackageManager()](https://developer.android.com/reference/android/content/Context.html)
111-
112106

107+
- [GetPackageManager()](https://developer.android.com/reference/android/content/Context.html)

0 commit comments

Comments
 (0)