Hello everyone !
I am currently developing an android app requiring the power of Microsoft authentication and its API Graph. The objective is to offer users the possibility to find friends into the same tenant (i.e University) by using Graph.
However, there is something I didn't actually understand about redirect URLs we have to add on Azure App registration. My colleagues cannot make request using my URL specified into the JSON provided by Azure:
{
"client_id" : "a506XXXX",
"authorization_user_agent" : "BROWSER",
"redirect_uri" : "msauth://com.example.myfirstapp/OizXXXXXXXXX",
"broker_redirect_uri_registered" : true,
"account_mode" : "SINGLE",
"authorities" : [
{
"type": "AAD",
"audience": {
"type": "AzureADMyOrg",
"tenant_id": "XXXXX"
}
}
]
}
Do all developers have to specify a different redirect URL based on their project signature ? It seems to be weird because once the app in production launched, there will be only one redirect URL ...
Many thanks for your help
