<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic RE: Graph API - How to use this authentication method. in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60281#M1996</link>
    <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Thanks for the all help. The access and app registration has been done in the Azure directory. But the action using delegated access token unable to generate. Throws this error - The remote server returned an error: (400) Bad Request.&lt;BR /&gt;&lt;BR /&gt;But able to generate using Application access token. Does this mean we still don't have delegate access?&lt;BR /&gt;&lt;BR /&gt;One more query is do we really able to download the file locally to any of the folders?&lt;BR /&gt;&lt;BR /&gt;If yes then how?&lt;BR /&gt;&lt;BR /&gt;Also can you explain this error if we try the things with the​ Microsoft Graph - Download Files VBO.&lt;BR /&gt;&lt;BR /&gt;Internal : Could not execute code stage because exception thrown by code stage: Access to the path 'C:\******' is denied.&lt;BR /&gt;&lt;BR /&gt;We tried the above approach using Application access token and HTTP Request File.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vijay&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;VIJAY KUNWAR&lt;BR /&gt;SYSTEMS ENGINEER&lt;BR /&gt;TCS&lt;BR /&gt;Asia/Kathmandu&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Wed, 24 Aug 2022 14:23:00 GMT</pubDate>
    <dc:creator>VIJAY__KUNWAR</dc:creator>
    <dc:date>2022-08-24T14:23:00Z</dc:date>
    <item>
      <title>Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60269#M1984</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;&lt;BR /&gt;Can someone show us example how exactly we can find the drive id, Site Id and File Id for executing the Graph API skillset for SharePoint. May be by using Delegating Site access.&lt;/P&gt;
&lt;P&gt;Though we are already using API skillset for SharePoint but we need to use modern authentication which I don't understand what exactly is it. According to me its Graph API only. So if someone can explain me and provide examples how we can use this would be really great.&lt;BR /&gt;&lt;BR /&gt;I need example please. Thanks.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vijay&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;VIJAY KUNWAR&lt;BR /&gt;SYSTEMS ENGINEER&lt;BR /&gt;TCS&lt;BR /&gt;Asia/Kathmandu&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Aug 2022 11:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60269#M1984</guid>
      <dc:creator>VIJAY__KUNWAR</dc:creator>
      <dc:date>2022-08-16T11:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60270#M1985</link>
      <description>Hello &lt;A class="user-content-mention" data-sign="@" data-contactkey="0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-tag-text="@VIJAY KUNWAR" href="https://community.blueprism.com/network/profile?UserKey=0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-itemmentionkey="942c561c-ca12-4b43-8512-b7f9705f29c5"&gt;@VIJAY KUNWAR&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;You've really got two different questions here. The first seems to be how do you use the SharePoint connector in general while the second is how do you set up Delegated access authentication.&lt;BR /&gt;&lt;BR /&gt;Let's start with the first question about using the connector. From the start, you should be able to execute any action that requires the SharePoint site ID because the site ID can be specified as either the user-friendly FQDN of the site (ex. contoso.sharepoint.com) or the sites full ID which is a composite of the following values:&lt;BR /&gt;&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;Site collection hostname (contoso.sharepoint.com)&lt;/LI&gt;
&lt;LI&gt;Site collection unique ID (GUID)&lt;/LI&gt;
&lt;LI&gt;Site unique ID (GUID)&lt;/LI&gt;
&lt;/UL&gt;
If you want to get the full (i.e. composite) ID of the site you can call the &lt;EM&gt;&lt;STRONG&gt;Get Root Site&lt;/STRONG&gt;&lt;/EM&gt; action on the connector. Alternatively, you can call the &lt;EM&gt;&lt;STRONG&gt;Get Site by Site ID&lt;/STRONG&gt;&lt;/EM&gt; action and pass in the FQDN of the site.&lt;BR /&gt;&lt;BR /&gt;As for the other values (Drive ID, File ID, etc), it's a matter of calling various actions on the connector and then iterating over the response data. For example, the get a list of Drive ID's of your root SharePoint site you could call the &lt;EM&gt;&lt;STRONG&gt;Get Root Site&lt;/STRONG&gt;&lt;/EM&gt; action followed by the &lt;EM&gt;&lt;STRONG&gt;Get All Drives&lt;/STRONG&gt;&lt;/EM&gt; action. Alternatively, you could just call &lt;EM&gt;&lt;STRONG&gt;Get All Drives&lt;/STRONG&gt;&lt;/EM&gt; directly, or even &lt;EM&gt;&lt;STRONG&gt;Get Default Drive Details&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;if there's a single drive associated with the site, since you already know the FQDN of your SharePoint site.&lt;BR /&gt;&lt;BR /&gt;Once you have the ID of the specific drive associated with your SharePoint site, you'll want to call &lt;EM&gt;&lt;STRONG&gt;Get Root Folder ID&lt;/STRONG&gt;&lt;/EM&gt; for the specific SharePoint site and drive. This will give you the top-level folder ID for the drive. From there, you can call &lt;EM&gt;&lt;STRONG&gt;Get Drive Items&lt;/STRONG&gt;&lt;/EM&gt; to get a collection of all the contents in that specific folder. Then you would iterate over that collection and drill into any other child folders you may be interested in.&lt;BR /&gt;&lt;BR /&gt;On to the second question, authentication. There are two token types available when using the &lt;STRONG&gt;Microsoft Graph - Authentication&lt;/STRONG&gt; VBO. They are &lt;STRONG&gt;Application Access&lt;/STRONG&gt; and &lt;STRONG&gt;Delegated Access&lt;/STRONG&gt;. Application Access tends to be the easier method and is meant for &lt;EM&gt;service-to-service&lt;/EM&gt; or &lt;EM&gt;machine-to-machine &lt;/EM&gt;communication. It's a similar idea to what are known as &lt;EM&gt;Service Accounts&lt;/EM&gt; on Windows.&lt;BR /&gt;&lt;BR /&gt;Delegated Access, on the other hand, is where you're requesting access on behalf of a specific user account. In other words, your digital worker is going to work on behalf of a specific user (ex John Doe). If you look through the Graph API reference, you'll see many examples of actions that are only supported with Delegated Access. To use Delegated Access you must provide an OAuth2 &lt;EM&gt;&lt;STRONG&gt;Client ID&lt;/STRONG&gt;&lt;/EM&gt; and &lt;EM&gt;&lt;STRONG&gt;Client Secret&lt;/STRONG&gt;&lt;/EM&gt; as well as the Active Directory &lt;EM&gt;&lt;STRONG&gt;Username&lt;/STRONG&gt;&lt;/EM&gt; and &lt;EM&gt;&lt;STRONG&gt;Password&lt;/STRONG&gt;&lt;/EM&gt; of the user account you are trying to work on behalf of.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7832.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/8008i1B106C4A1D8410B1/image-size/large?v=v2&amp;amp;px=999" role="button" title="7832.png" alt="7832.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Of course you also have to pass in your Microsoft 365 tenant ID. All of this information can be collected from the Microsoft 365 AD console. If you don't have direct access to that, you'll have to request the information from your IT team. This includes having them set up an application definition for you in AD. Below are some screenshots of a test application definition I have created in my Azure sandbox along with some of the Graph API permissions I applied to that application so that it could work with my SharePoint sites.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7834.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/8010iA64481BA9631DB44/image-size/large?v=v2&amp;amp;px=999" role="button" title="7834.png" alt="7834.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7835.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/8011i42FE350CE0B560FE/image-size/large?v=v2&amp;amp;px=999" role="button" title="7835.png" alt="7835.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7836.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/8012i6AF195D3D25C99F9/image-size/large?v=v2&amp;amp;px=999" role="button" title="7836.png" alt="7836.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7837.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/8014i3E8FB5E14DEA1517/image-size/large?v=v2&amp;amp;px=999" role="button" title="7837.png" alt="7837.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Hope this helps. If not, let me know what specific questions you have.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Aug 2022 18:04:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60270#M1985</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-16T18:04:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60271#M1986</link>
      <description>Great Explanation &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;, Thanks, this will help a lot of people! I'm sure​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Emerson Ferreira&lt;BR /&gt;Cons, Intelligent automation&lt;BR /&gt;Avanade Brasil&lt;BR /&gt;Recife&lt;BR /&gt;+5581988869544&lt;BR /&gt;If my answer helped you? Mark as useful!&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Aug 2022 18:16:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60271#M1986</guid>
      <dc:creator>EmersonF</dc:creator>
      <dc:date>2022-08-16T18:16:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60272#M1987</link>
      <description>Hi Eric,&lt;BR /&gt;&lt;BR /&gt;Thanks for the quick reply.&lt;BR /&gt;&lt;BR /&gt;I guess I have already gone through the Microsoft sites and Blue prism for understanding this how the Graph API works here. But after every try its getting more confused.&lt;BR /&gt;&lt;BR /&gt;First thing - Is username and password for delegate site should be of Sharepoint particular Username and Password who have access to SharePoint or do they have to go via Azure directory access.&lt;BR /&gt;&lt;BR /&gt;Second - Getting Site id, File Id and Drive Id how exactly this can be used via the Blue prism VBO. The steps where and all it required changes.&lt;BR /&gt;&lt;BR /&gt;Third - Is the GRAPH API the only modern authentication way for accessing Sharepoint via a Azure directory. Why Azure is required? Can we by pass this or is there any other method available for this?&lt;BR /&gt;&lt;BR /&gt;I am already using Sharepoint skillset using Client and secret Id generating a Bearer token and working with sharepoint site. Is that not the modern way as we are using Bearer Token?&lt;BR /&gt;&lt;BR /&gt;Fourth -&amp;nbsp; If nothing applies here. Can you please share me some examples or demo which can help me understand how exactly we can make this work with Blue prism VBO's to download and perform other CRUD operations with this API.&lt;BR /&gt;&lt;BR /&gt;Thanks for all the help.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vijay&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;VIJAY KUNWAR&lt;BR /&gt;SYSTEMS ENGINEER&lt;BR /&gt;TCS&lt;BR /&gt;Asia/Kathmandu&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Aug 2022 10:55:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60272#M1987</guid>
      <dc:creator>VIJAY__KUNWAR</dc:creator>
      <dc:date>2022-08-17T10:55:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60273#M1988</link>
      <description>Hello &lt;A class="user-content-mention" data-sign="@" data-contactkey="0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-tag-text="@VIJAY KUNWAR" href="https://community.blueprism.com/network/profile?UserKey=0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-itemmentionkey="68ae366f-c7ca-4b06-aab9-95c5e874b99e"&gt;@VIJAY KUNWAR&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;​If you're trying to get a delegated user token then it must be for a user that's defined in the Azure AD. Microsoft Graph is based on Azure. All of the permissions are governed by the associated Azure AD of your specific tenant. Microsoft Graph is not an API that can be used with traditional/legacy SharePoint on-prem deployments.&lt;BR /&gt;&lt;BR /&gt;I don't understand your second question. I laid out, in my previous response, the various actions that can be used for collecting that information. When you call those actions you'll receive output data from Graph, typically in the form of a Blue Prism Collection or a JSON blob (aka Text). As an example, if I get my auth token and then I call the action &lt;EM&gt;&lt;STRONG&gt;Get Root Site&lt;/STRONG&gt;&lt;/EM&gt; it will return a Collection of data containing information about my root SharePoint site as pictured below:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7853.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/8029i0DFD56ECEE874E1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="7853.png" alt="7853.png" /&gt;&lt;/span&gt;&lt;BR /&gt;As for your third question, Microsoft has made it clear that the Graph API is their API of choice, moving forward, for working with Azure/Microsoft 365 services including Excel, Outlook, Teams, SharePoint, etc. It's not a complete API yet though. Microsoft still haven't added support for Word, PowerPoint, Visio, etc yet.&lt;BR /&gt;&lt;BR /&gt;If you already have code in place that's getting a token for you then you should be able to pass that token into the various actions on the SharePoint connector, assuming you've granted the appropriate SharePoint permissions to the the specific application definition you're Client ID and Client Secret are tied to. If all you're using to get the token is Client ID and Client Secret then what you're getting is an Application Access Token (yes this is a type of Bearer token).&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Aug 2022 13:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60273#M1988</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-17T13:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60274#M1989</link>
      <description>Hi Eric. Thank you for this detailed post. I'm in the midst of getting my head around it!&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;My organisation requires 2FA to access SharePoint, and I believe that this is causing me an issue in getting an Access Token back when using the Delegated Access action within the Authenticator VBO (which is required for the task I have in mind). I assume (at this point I feel it pertinent to mention that I know very little of Azure/AD, so if this is a nonsense question, please let me know) this means that my username and password (input parameters for the action 'Get Delegated Access Token') are insufficient. However I'm unsure if there's a way within Blue Prism to provide this 2FA. Does that make sense? Is there a workaround 'Blue Prism-side' or do I need to petition my IT department to allow certain access rights for me and any virtual workers? If so, what are those rights?&lt;BR /&gt;&lt;BR /&gt;Many thanks again for helping me (and others) understand this - albeit very slowly!&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Hammond&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Aug 2022 13:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60274#M1989</guid>
      <dc:creator>john.hammond</dc:creator>
      <dc:date>2022-08-17T13:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60275#M1990</link>
      <description>&lt;P&gt;Thanks Eric,&lt;BR /&gt;&lt;BR /&gt;This makes some sense.&lt;BR /&gt;&lt;BR /&gt;Can you please clarify these as well-&lt;BR /&gt;&lt;BR /&gt;1- &lt;SPAN&gt;As an example, if I get my auth token and then I call the action&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Get Root Site&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;it will return a Collection of data(&lt;STRONG&gt;Which VBO action is having these options as I haven't seen any of these)&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;2- &lt;SPAN&gt;&amp;nbsp;If all you're using to get the token is Client ID and Client Secret then what you're getting is an Application Access Token (yes this is a type of Bearer token).&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;Is this only Basic authentication not a modern authentication method?&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;Thanks for all the help.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vijay&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;VIJAY KUNWAR&lt;BR /&gt;SYSTEMS ENGINEER&lt;BR /&gt;TCS&lt;BR /&gt;Asia/Kathmandu&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Aug 2022 14:00:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60275#M1990</guid>
      <dc:creator>VIJAY__KUNWAR</dc:creator>
      <dc:date>2022-08-17T14:00:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60276#M1991</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1981"&gt;@john.hammond&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;There's nothing in the Graph API that specifically supports 2FA/MFA for authentication. MFA typically involves a visual component, specifically opening the browser to a certain Microsoft authentication page. So the recommendation is that any user accounts you're trying to use under Delegated permissions with Graph should not have 2FA/MFA enabled on them. Ideally, you would have robot-specific accounts created in Azure AD for your digital workers so you don't have to disable MFA for human users if your company standard is to have it enabled.&lt;BR /&gt;&lt;BR /&gt;You can read more about Graph and it's authentication methods &lt;A href="https://docs.microsoft.com/en-us/graph/auth/?view=graph-rest-1.0" target="_blank" rel="noopener"&gt;here&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;FWIW - There are &lt;A href="https://digitalexchange.blueprism.com/dx/search?keyword=2FA&amp;amp;page=1" target="_blank" rel="noopener"&gt;2FA/MFA&lt;/A&gt; connectors available on the DX. These are targeted at processes that need to perform 2FA/MFA as part of a UI-based automation. There may be a way to leverage the 2FA/MFA connectors with the Graph Authentication connector we have. It would require changing the &lt;EM&gt;&lt;STRONG&gt;grant_type&lt;/STRONG&gt;&lt;/EM&gt; that's defined in the VBO and then extending the workflow a bit as there would be more processing that needs to take place. I'll have to think about this. &lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;There's also a separate connector on the DX that supports &lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/msalnet" target="_blank" rel="noopener"&gt;MSAL.NET&lt;/A&gt; which can be used to request access tokens using client certificates, if that's of any interest to you.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Aug 2022 14:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60276#M1991</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-17T14:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60277#M1992</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Any answers for my last query please?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vijay​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;VIJAY KUNWAR&lt;BR /&gt;SYSTEMS ENGINEER&lt;BR /&gt;TCS&lt;BR /&gt;Asia/Kathmandu&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Aug 2022 14:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60277#M1992</guid>
      <dc:creator>VIJAY__KUNWAR</dc:creator>
      <dc:date>2022-08-17T14:39:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60278#M1993</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-tag-text="@VIJAY KUNWAR" href="https://community.blueprism.com/network/profile?UserKey=0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-itemmentionkey="24314ac5-de44-478e-a2ff-c0df6f58bdc6"&gt;@VIJAY KUNWAR&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;You mentioned that you're already using a Blue Prism SharePoint skill. Perhaps you can elaborate on where you got that and what it is? The connector(s) I'm referring to area available on the Digital Exchange. You can find them at the links below:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/microsoft-graph-api---sharepoint" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/3439/solution/microsoft-graph-api---sharepoint&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/microsoft-graph-api---sharepoint-upload-sessions" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/3439/solution/microsoft-graph-api---sharepoint-upload-sessions&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/microsoft-graph-api---download-files" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/microsoft-graph-api---download-files&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTTP Basic authentication, bearer authentication (sometimes referred to as API key), and others rely on the use of the &lt;STRONG&gt;Authorization&lt;/STRONG&gt; HTTP header. This is part of the general authentication framework defined in the HTTP specification. You can find a list of the supported authentication schemes &lt;A href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication#authentication_schemes" target="_blank" rel="noopener"&gt;here&lt;/A&gt;. This does not mean these are all Basic though. Basic is just one schema that uses the general HTTP authentication framework.​&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Aug 2022 15:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60278#M1993</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-17T15:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60279#M1994</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Hi I am using the Sharepoint ACS Authentication and it skillset which was available in the Digital Exchange portal earlier but its not available now on the portal.&lt;BR /&gt;&lt;BR /&gt;Same connectors I am referring now for the Graph API -&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/microsoft-graph-api---sharepoint" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/3439/solution/microsoft-graph-api---sharepoint&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/microsoft-graph-api---sharepoint-upload-sessions" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/3439/solution/microsoft-graph-api---sharepoint-upload-sessions&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/microsoft-graph-api---download-files" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/microsoft-graph-api---download-files&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1-&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;As an example, if I get my auth token and then I call the action&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Get Root Site&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;it will return a Collection of data(&lt;STRONG&gt;Which VBO action is having these options as I haven't seen any of these) Can you help on this please?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vijay&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;VIJAY KUNWAR&lt;BR /&gt;SYSTEMS ENGINEER&lt;BR /&gt;TCS&lt;BR /&gt;Asia/Kathmandu&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Aug 2022 15:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60279#M1994</guid>
      <dc:creator>VIJAY__KUNWAR</dc:creator>
      <dc:date>2022-08-17T15:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60280#M1995</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-tag-text="@VIJAY KUNWAR" href="https://community.blueprism.com/network/profile?UserKey=0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-itemmentionkey="c939354e-20d1-4921-9900-a062f09b87e3"&gt;@VIJAY KUNWAR&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Ok, you're using the older SharePoint connector that was archived some time ago due to support issues and the primary developer/maintainer leaving. That connector/skill did not support Delegated Access authentication. It only supported Application Access authentication.&lt;BR /&gt;&lt;BR /&gt;If you look at the asset card for each of the assets I linked above you'll see a PDF user guide. Each guide lists the actions exposed by the specific connector.​&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7902.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/8078i93C21EF4BDE69F85/image-size/large?v=v2&amp;amp;px=999" role="button" title="7902.png" alt="7902.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Aug 2022 15:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60280#M1995</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-17T15:39:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60281#M1996</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Thanks for the all help. The access and app registration has been done in the Azure directory. But the action using delegated access token unable to generate. Throws this error - The remote server returned an error: (400) Bad Request.&lt;BR /&gt;&lt;BR /&gt;But able to generate using Application access token. Does this mean we still don't have delegate access?&lt;BR /&gt;&lt;BR /&gt;One more query is do we really able to download the file locally to any of the folders?&lt;BR /&gt;&lt;BR /&gt;If yes then how?&lt;BR /&gt;&lt;BR /&gt;Also can you explain this error if we try the things with the​ Microsoft Graph - Download Files VBO.&lt;BR /&gt;&lt;BR /&gt;Internal : Could not execute code stage because exception thrown by code stage: Access to the path 'C:\******' is denied.&lt;BR /&gt;&lt;BR /&gt;We tried the above approach using Application access token and HTTP Request File.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vijay&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;VIJAY KUNWAR&lt;BR /&gt;SYSTEMS ENGINEER&lt;BR /&gt;TCS&lt;BR /&gt;Asia/Kathmandu&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2022 14:23:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60281#M1996</guid>
      <dc:creator>VIJAY__KUNWAR</dc:creator>
      <dc:date>2022-08-24T14:23:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60282#M1997</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-tag-text="@VIJAY KUNWAR" href="https://community.blueprism.com/network/profile?UserKey=0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-itemmentionkey="64251ea3-78ab-4cb3-bbde-8e44b1cf7a74"&gt;@VIJAY KUNWAR&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;When you created your app registration in Azure AD, what type of account did you select?&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7916.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/8091iFE11C9683454286D/image-size/large?v=v2&amp;amp;px=999" role="button" title="7916.png" alt="7916.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Application Access tokens and Delegated Access tokens are not the same thing. There are some endpoints within the Graph API that specifically require a Delegated Access token​ (ex. Sending a message in a Chat within Microsoft Teams via Graph).&lt;BR /&gt;&lt;BR /&gt;My recommendation is to review the specific endpoints you're interested in. If they support Application Access tokens, that is what I would use. I only go with Delegated Access is the endpoint specifically requires it.&lt;BR /&gt;&lt;BR /&gt;Regarding download, which action are you trying to use? Does the runtime resource have permissions on the folder where you're trying to save the file to?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2022 15:38:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60282#M1997</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-24T15:38:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60283#M1998</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;We have selected the first option that is Singe Tenant.&lt;BR /&gt;&lt;BR /&gt;Regarding download I just did. We need to give the filename as well after the directory location of Save to.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;But I wanted to check with you how can we do for multiple files together I can only see Download File which allows only a single file at a time to download from this action marked with Blue border. Is there any other action or its not yet provided by Blue Prism. Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7928.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/8105i2AF06149E2ED694D/image-size/large?v=v2&amp;amp;px=999" role="button" title="7928.png" alt="7928.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vijay​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;VIJAY KUNWAR&lt;BR /&gt;SYSTEMS ENGINEER&lt;BR /&gt;TCS&lt;BR /&gt;Asia/Kathmandu&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2022 15:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60283#M1998</guid>
      <dc:creator>VIJAY__KUNWAR</dc:creator>
      <dc:date>2022-08-24T15:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60284#M1999</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-tag-text="@VIJAY KUNWAR" href="https://community.blueprism.com/network/profile?UserKey=0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-itemmentionkey="9eb4a6d9-638c-406f-ae30-6752b0d4eef3"&gt;@VIJAY KUNWAR&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Ah, I see what you're trying to do. Unfortunately, the connector only supports single file downloads at the moment. I believe their is an endpoint available that supports basically building a download bundle for multiple files, but we haven't added it to the connector yet.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2022 16:11:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60284#M1999</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-24T16:11:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60285#M2000</link>
      <description>Thanks &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Do you have reference for that end point please?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vijay​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;VIJAY KUNWAR&lt;BR /&gt;SYSTEMS ENGINEER&lt;BR /&gt;TCS&lt;BR /&gt;Asia/Kathmandu&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2022 17:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60285#M2000</guid>
      <dc:creator>VIJAY__KUNWAR</dc:creator>
      <dc:date>2022-08-24T17:35:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60286#M2001</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-tag-text="@VIJAY KUNWAR" href="https://community.blueprism.com/network/profile?UserKey=0ee0f1e4-2406-4dcc-b2a2-7463bd9b86f4" data-itemmentionkey="7c6e84f2-b122-4b1a-9d6d-939164d8d66c"&gt;@VIJAY KUNWAR&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;After looking at this further, there is no specific endpoint for batch downloads. However, there is a thread that discusses the issue &lt;A href="https://docs.microsoft.com/en-us/answers/questions/780951/downloading-multiple-files-from-onedrive-using-the.html" target="_blank" rel="noopener"&gt;here&lt;/A&gt;. According to that thread you could create a specially crafted JSON payload​ to download up to 20 files at a time. &lt;BR /&gt;&lt;BR /&gt;Alternatively, if you get the metadata for all the files you are interested in, each one should include a pre-authenticated download URL for each file (see image below). You could collect all of those URLs and then use a Code stage to kick off several asynchronous download sessions at one time. That would basically download all of those files in parallel.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7972.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/8147i5871241071CF0EBF/image-size/large?v=v2&amp;amp;px=999" role="button" title="7972.png" alt="7972.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2022 20:26:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60286#M2001</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-24T20:26:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60287#M2002</link>
      <description>&lt;P&gt;Hello Eric&lt;BR /&gt;You say "&lt;SPAN&gt;From there, you can call&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Get Drive Items&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to get a collection of all the contents in that specific folder. Then you would iterate over that collection and drill into any other child folders you may be interested in.&lt;/SPAN&gt;". I can't get anywhere here. The problem is that with "Drive Items" I get the information for both folders and files. If I want to drill-into any child folder, I have to know what folders and what files are. How do I know what folders and what files are or how do I get the IDs only from the folders? Basically it also works with files (I just can’t drill-into then), but for performance reasons this is very unsatisfactory.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Patrick&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Patrick Brunner&lt;BR /&gt;RPA Engineer&lt;BR /&gt;Die Mobiliar&lt;BR /&gt;Europe/Zurich&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 06:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/60287#M2002</guid>
      <dc:creator>EasyBluePrism</dc:creator>
      <dc:date>2023-08-23T06:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Graph API - How to use this authentication method.</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/109859#M3480</link>
      <description>&lt;P&gt;I have another question: It is quite normal that within a folder there are ten subfolders. This means I have to create ten nested loops to get to the last subfolder. This is incredibly time-consuming and not very user-friendly. Is there another way?&lt;/P&gt;&lt;P&gt;Why can’t I just use the file or folder name to find a file or folder and why I have to work with these IDs? At Powerautomate for example, this is an absolute no-brainer.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 09:11:48 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-API-How-to-use-this-authentication-method/m-p/109859#M3480</guid>
      <dc:creator>EasyBluePrism</dc:creator>
      <dc:date>2024-04-24T09:11:48Z</dc:date>
    </item>
  </channel>
</rss>

