Skip to content

Commit 7d183a4

Browse files
authored
Create Azure_app_signup_step_by_step.md
1 parent 31d760f commit 7d183a4

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

Azure_app_signup_step_by_step.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
```python
2+
# Program: Accessing OneDrive via Graph API
3+
# Author: Pranab Das (Twitter: @Pranab_Das)
4+
# Version: 20191104
5+
```
6+
7+
# Azure App Signup step by step
8+
9+
1. Go to https://portal.azure.com
10+
11+
![01.PNG](attachment:01.PNG)
12+
13+
2. Navigate to Azure Active Directory
14+
15+
![02.PNG](attachment:02.PNG)
16+
17+
18+
3. Select App Registration
19+
20+
![03.PNG](attachment:03.PNG)
21+
22+
4. Click New Registration
23+
24+
![04.PNG](attachment:04.PNG)
25+
26+
5. Give a name to your app, set the redirect URL, and hit Registration button.
27+
28+
![05.PNG](attachment:05.PNG)
29+
30+
6. Note down the client ID and go to API permissions.
31+
32+
![06.PNG](attachment:06.PNG)
33+
34+
7. Click Add permissions, select Microsoft Graph.
35+
36+
![07.PNG](attachment:07.PNG)
37+
38+
8. Choose Delegated permission.
39+
40+
![08.PNG](attachment:08.PNG)
41+
42+
9. We will add Files.ReadWrite.All for our purpose.
43+
44+
![09.PNG](attachment:09.PNG)
45+
46+
10. Now go to Authentication tab, and enable Access token. Click the save button, and now we are all set to go.
47+
48+
![10.PNG](attachment:10.PNG)
49+
50+
51+
```python
52+
53+
```

0 commit comments

Comments
 (0)