Skip to content

Commit d64ec50

Browse files
Merge pull request #42254 from Zawad/patch-3
Fixing the table styling
2 parents 826b6e8 + f0cd179 commit d64ec50

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/active-directory/develop/v2-permissions-and-consent.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -183,18 +183,18 @@ When you're ready to request permissions from your organization's admin, you can
183183

184184
```
185185
// Line breaks are for legibility only.
186-
GET https://login.microsoftonline.com/{tenant}/v2.0/adminconsent?
186+
GET https://login.microsoftonline.com/{tenant}/v2.0/adminconsent?
187187
client_id=6731de76-14a6-49ae-97bc-6eba6914391e
188188
&state=12345
189189
&redirect_uri=http://localhost/myapp/permissions
190-
&scope=
191-
https://graph.microsoft.com/calendars.read
192-
https://graph.microsoft.com/mail.send
190+
&scope=
191+
https://graph.microsoft.com/calendars.read
192+
https://graph.microsoft.com/mail.send
193193
```
194194

195195

196196
| Parameter | Condition | Description |
197-
|--------------:|--------------:|:-----------------------------------------------------------------------------------------:|
197+
|:--------------|:--------------|:-----------------------------------------------------------------------------------------|
198198
| `tenant` | Required | The directory tenant that you want to request permission from. Can be provided in GUID or friendly name format OR generically referenced with `common` as seen in the example. |
199199
| `client_id` | Required | The **Application (client) ID** that the [Azure portal – App registrations](https://go.microsoft.com/fwlink/?linkid=2083908) experience assigned to your app. |
200200
| `redirect_uri` | Required |The redirect URI where you want the response to be sent for your app to handle. It must exactly match one of the redirect URIs that you registered in the app registration portal. |

0 commit comments

Comments
 (0)