AXForum  
Вернуться   AXForum > Microsoft Dynamics NAV > NAV: Blogs
All
Забыли пароль?
Зарегистрироваться Правила Справка Пользователи Сообщения за день Поиск Все разделы прочитаны

 
 
Опции темы Поиск в этой теме Опции просмотра
Старый 17.02.2019, 04:43   #1  
Blog bot is offline
Blog bot
Участник
 
25,448 / 846 (79) +++++++
Регистрация: 28.10.2006
Navigate Into Success: How do I: Really set up Azure Active Directory based authentication for Business Central APIs
Источник: http://vjeko.com/how-do-i-really-set...-central-apis/
==============

In just under two weeks I’ll have to present how to use OAuth 2.0 authentication to call REST APIs of Dynamics 365 Business Central. Should be easy. Not only I have already done
OAuth integrations, but there is also a nice step-by-step tutorial by Microsoft specifically done for Business Central. So, I followed the steps to the letter (as much as that was possible), and after all was done, I tried to use Postman to get myself an OAuth 2.0 token for invoking Business Central REST APIs, but it didn’t work. No matter what I did, Postman kept returning this:



(Could not complete OAuth 2.0 login. Check Postman Console for more details.)

So I checked the Postman Console for more details.



(access_denied; Error)

Quite some detail.

After a ridiculous amount of time troubleshooting this, I figured it out. Depending on how your Business Central trial account was configured you may encounter this problem. On top of it add the fact that the documentation isn’t exactly straightforward and at couple of places leaves you (educated-)guessing. So I decided to write this blog in case you (or myself at some future point after I will have forgotten I’ve been in this mess) ever need it.



For the sake of simplicity, I’ll just assume that you have a Business Central account, trial or otherwise.

Let’s start first with how to really set it OAuth 2.0 authentication without any need for guesswork.

1. Sign in to Azure Portal with the account you use to sign in to Business Central.


2. Create an Azure Active Directory Web app / API registration


With OAuth 2.0 authentication things are not simple, for a reason. You have a back-end AAD-managed resource you want to access (such as Business Central) and a third-party app that wants to access it (whatever integration you are developing). There should be a contract between the two, that applies only to those two parties, that controls whether an app can access your AAD-managed resource. That’s why you need to create an app registration record in your Azure Active Directory to control access the integration you are developing has to Business Central.

This is what you are configuring in this stage.

In the navigation pane, click on Azure Active Directory

If, by any chance, you don’t see this there, then click on All Services:

Then in the All Services search box, enter “Directory”:

And then in the list of found entries click Azure Active Directory.

Follow these steps to create an app registration:
  1. In the list of the Azure Active Directory resources, click App registrations.
  2. Click New application registration:
  3. Populate the Create blade with your app information:
    Name should be unique for your Active Directory.
    Application type must be Web app / API.
    Sign-on URL must be https://businesscentral.dynamics.com/
    Here’s an example:
  4. Click Create. After a few seconds the Registered app blade will show up automatically and display the information about your freshly created app registration.
  5. In the Registered app blade, select and copy the value under Application ID, or alternatively hover your mouse over it and click the copy button that appears: . Store this value somewhere; you will use it as the Client ID during OAuth 2.0 authentication protocol.
Microsoft’s Getting Started article fails here. First, it directs you to a generic Azure how-to document which explains how to create any application registration type, including native (which you must not choose for Business Central OAuth 2.0 authentication). Second, it never tells you which Sign-on URL to use. It should be obvious, but you might get creative with known URLs like https://login.microsoftonline.com/ or whatever else.

Now that you created your app registration, you must configure it.
  1. In your Registered app blade, click Settings:
  2. In the Settings blade, under API Access section, click Required permissions:
  3. In the Required permissions blade, click Add:
  4. In the Add API access blade, click 1 Select an API:
  5. In the Select an API blade, you need to select Dynamics 365 Business Central, but most likely it is not listed. Don’t worry, you can still search for it. In the search box, enter “Dynamics”, and then click Dynamics 365 Business Central:
  6. Click Select.
  7. In the Enable access blade, click the Delegated permissions checkbox.
  8. Click Select.
  9. In the Add API access blade, click Done.

    In a few seconds, a notification message will confirm successful configuration of permissions:
  10. Back in the Settings blade (should be still visible), still under API Access section, click Keys:
  11. In the Keys blade, under Passwords section, populate the first empty row by entering a unique value into the Key description text box, and selecting one of the available durations from the Duration combo box:

    Your key description should be descriptive enough to indicate which app (or integration) it is being used for. Don’t use generic names as I did here if you are developing a lot of different integrations.
  12. Click Save:

    This generates your access key:

    A warning message on top tells you to copy the key value. It will only be visible once, and once you navigate away from the Keys blade, you won’t be able to retrieve the key, and you would have to create a new one.
Copying this key is important. Copy it and store it somewhere. Don’t lose it. This key will be used as your client secret when authenticating using OAuth 2.0, and you should only ever use one key for one integration (one application) that communicates with the back end. You can easily revoke the keys or create as many keys as you need for other integrations (applications) you will develop.

In case you prefer it this way, here’s a short gif video that shows all of these steps in one go:



Before you can try out your OAuth 2.0 authentication, you need to copy your directory ID. It will be used during the authentication protocol, and Azure will use it to know which specific Azure Active Directory to look into.
  1. Close all the open blades, or simply click Azure Active Directory to return back to the overview of your active directory.
  2. In the list of resources, click Properties:
  3. In the list of properties, locate the Directory ID property, and select and copy its value. Alternatively, click the copy button .
3. Test your OAuth 2.0 with Postman


I am using Postman for two reasons. First, apparently it’s the new black and these days everyone and his sister is using it to try out REST APIs. The second reason is that it already comes bundled with full support for OAuth 2.0 authentication and I don’t need to develop my own client.

Follow these steps:
  1. Start Postman. If you didn’t do it already, then download and install Postman from https://www.getpostman.com/, and then start it.
  2. Close the Create New dialog. You don’t have to, here you really can do nearly any of the offered options, but since I want to show only how to get the OAuth 2.0 authentication token, this is the simplest options.
  3. In the Untitled Request tab, click Authorization.
  4. From the Type combo box, select OAuth 2.0:
  5. Click Get New Access Token:

    This will show the Get New Access Token dialog.
  6. Enter any descriptive name in the Token Name field. This is completely irrelevant.
  7. Leave Grant Type at Authorization Code default value.
  8. In the Callback URL field, enter https://businesscentral.dynamics.com/
  9. In the Auth URL field, enter the specific authorization URL for your Azure Active Directory. If you don’t have it, it’s this:
    https://login.windows.net//oauth2/authorize?resource=https://api.businesscentral.dynamics.comIf your Directory ID (you copied it in the previous step, remember?) is eec4d82e-660b-4afa-b4c8-c8b60d5fee4c, your Auth URL will look like this:
    https://login.windows.net/eec4d82e-6...l.dynamics.com
  10. In the Access Token URL field, enter the token URL for your AAD. It’s similar to the one above, only instead of the “authorize” part, it has “token”. Something like this:
    https://login.windows.net/eec4d82e-6...l.dynamics.comImportant: For these two endpoints you must use the ones as explained in this and the previous step. Do not use the endpoints listed under the Endpoints section of your Azure Active Directory App registrations blade, that you may be familiar with from earlier. Those endpoints only accept POST requests, and Postman makes GET requests during OAuth 2.0 authorization process.
  11. In the Client ID field, enter your app registration ID (you copied it earlier, right after creating it).
  12. In the Client Secret field, enter the key value from your API Access Keys configuration of your app (you also copied it earlier). This is what your fully configured Get New Access Token dialog may look like at this point:
  13. Click Request Token.
    This is where OAuth 2.0 protocol kicks in. Postman will open a dialog containing an embedded browser and send a HTTP GET request to your authentication URL and pass the necessary parameters (Client ID is the most important at this stage).
  14. Enter your credentials. Don’t worry, Postman will not see them. At this point, even if you entered correct credentials, there are several possible outcomes:
    1. If you provided wrong Client ID or Callback URL different than the one specified during the App registration creation process:

      This is easy, simply check all the details of the error message (always provided!), they will tell you exactly what’s wrong, and it should be easy to fix.
    2. If you provided an incorrect client secret, you will get this:

      If the incorrect client secret is the reason why you see this message, it’s also easy. Go back, provide the correct client secret, and retry. If you got the client secret correctly, option d) will apply to you. However, there may be that the option c) applies to you.
    3. If your Azure Active Directory is not a managed AAD and doesn’t have an administrator, then you will also see this:

      You, lucky you, you! You are really lucky to have me, because you don’t have to go through the troubles I went through, that made me spend two hours writing this post for you. There is more info for you a little further down.
    4. If you entered all OAuth 2.0 details correctly and your AAD is managed, then you get this:
Now, if you got this last one, under d), check the Consent on behalf of your organization, then click Accept, back in Postman in the Manage Access Tokens dialog scroll down, then click Use Token, and see you next time, we are done here, really – you just got your OAuth 2.0 token and can play around your Business Central APIs using production-grade security.

However, however… if you were as unlucky as I was the first time, you got this guy:



It took me ridiculous amounts of time to troubleshoot this one. No piece of documentation, no errors to hang on and google a stackoverflow solution, no absolutely nothing. Total darkness. It actually took me two additional Business Central trial tenants before I got one working. I got surprised when it finally worked, and then I figured out what is the problem: apparently you cannot use OAuth with an unmanaged Azure Active Directory.

To check if your AAD is managed, click All Services, then search for “Subscriptions” and then you see no subscriptions listed, like this:



Click Add and then attempt to add a subscription. If your AAD is unmanaged, you won’t be able to do this.

But how did I get into this mess in the first place? I must have done something wrong! Er, no. What I did is that I simply subscribed for Business Central trial with my e-mail address with an account that didn’t have AAD tied to it already. And this will happen to you too, if you do the same. I verified this by getting myself two extra domains (cost me $3.34 at NameCheap.com) that I didn’t first sign up for Azure, and then successfully signed up for Business Central trial only to get stuck at the OAuth 2.0 wall.

What happens when you sign up for Business Central trial? One of the following may happen:
  1. If you use an e-mail with a domain that already has a production Business Central tenant, you will not be able to sign up for a new trial.
  2. If you use an e-mail with a domain that already has a trial Business Central tenant, you will be joined into that trial organization (after successful verification that you own that e-mail)
  3. If you use an e-mail with a domain that already has a managed Azure AAD (for example, from Office 365) but no Business Central trial tenant, your new Business Central tenant will be provisioned, and you’ll be able to use OAuth 2.0 using the steps I described in this blog.
  4. If you use an e-mail with a domain not associated to an active Azure AAD, a new shadow Azure Active Directory (unmanaged AAD) will be created for you first, and then a new Business Central tenant will be provisioned. You won’t be able to use OAuth 2.0 until you perform the administrative takeover.
Luckily, Azure provides a guide how to perform the administrative takeover:

https://docs.microsoft.com/en-us/azu...admin-takeover

The kind of takeover you want to perform is the internal takeover, and the steps are explained here:

https://docs.microsoft.com/en-us/azu...admin-takeover

Simply follow these steps, and your AAD becomes a managed one, and you are now able to authenticate with OAuth 2.0.

Now, I don’t know (but I do intend to find out!) whether this is something by design, or simply a bug somewhere in either the sign-up process or OAuth 2.0 process. I have strong reasons to suspect that it’s actually a bug. It can be 100% repeated if you try creating your new Business Central trial from an e-mail that has no prior knowledge or ties to any AAD domain. If you sign up using such an e-mail, even though Business Central wires up your fresh new AAD, it doesn’t allow you to use OAuth. However, if you have AAD already, and then sign up for Business Central, it seems to work. To me, this sounds like a bug, especially because setting up AAD is an infrastructure task, and signing up for Business Central trial is intended to be performed by people without any knowledge of AAD or infrastructure or anything.

In the course of finding out what exactly is causing OAuth 2.0 to fail and then finding out what fixes it, I have created a crazy number of Azure Active Directories and demo Business Central tenants, and what confuses me most is that I even managed to figure out a way to create an unmanaged AAD, get Business Central on top of it, and then still be able to use OAuth 2.0 without performing administrative takeover (I don’t have more time to play around this specific scenario, but it seems to me that if you create a new AAD from the context of an existing Azure account, and then create a user for that AAD, and then sign up for Business Central, you get an unmanaged AAD and working Business Central OAuth 2.0. Seems that the only way to get a “messy” one is to start the entire process from the Business Central trial sign-up page and use an account not bound to an AAD already.

In any case, I hope this helped you, and now I am tired, but there are miles to go before I sleep.

Read this post at its original location at http://vjeko.com/how-do-i-really-set...-central-apis/, or visit the original blog at http://vjeko.com. 5e33c5f6cb90c441bd1f23d5b9eeca34The post How do I: Really set up Azure Active Directory based authentication for Business Central APIs appeared first on Vjeko.com.




Источник: http://vjeko.com/how-do-i-really-set...-central-apis/
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.
 

Похожие темы
Тема Автор Раздел Ответов Посл. сообщение
msdyncomm: How Do I: set up an Azure Active Directory Application in Microsoft Dynamics NAV 2017? Blog bot NAV: Blogs 0 18.11.2016 23:11
Navigate Into Success: From C/AL to executable: how NAV runs your C/AL code Blog bot NAV: Blogs 0 06.10.2016 13:11
Navigate Into Success: NAV performance part 4: SQL Azure Blog bot NAV: Blogs 0 15.05.2016 18:12
Navigate Into Success: NAV performance part 3: Azure VM configurations Blog bot NAV: Blogs 0 15.05.2016 18:12
Microsoft Dynamics CRM Team Blog: How to Synchronize CRM Online with your Active Directory Blog bot Dynamics CRM: Blogs 0 19.07.2013 02:17
Опции темы Поиск в этой теме
Поиск в этой теме:

Расширенный поиск
Опции просмотра

Ваши права в разделе
Вы не можете создавать новые темы
Вы не можете отвечать в темах
Вы не можете прикреплять вложения
Вы не можете редактировать свои сообщения

BB коды Вкл.
Смайлы Вкл.
[IMG] код Вкл.
HTML код Выкл.
Быстрый переход

Рейтинг@Mail.ru
Часовой пояс GMT +3, время: 08:56.
Powered by vBulletin® v3.8.5. Перевод: zCarot
Контактная информация, Реклама.