<?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: Dynatrace App Toolkit - ERESOLVE unable to resolve dependency tree in Developer Q&amp;A Forum</title>
    <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275427#M1389</link>
    <description>&lt;P&gt;Thank you! This indeed resolved our issue, and we installed the app correctly!&lt;/P&gt;&lt;P&gt;One more thing if I may ask: we completed all the checks in the troubleshooting connectivity page of the documentation:&amp;nbsp;&lt;A href="https://developer.dynatrace.com/develop/troubleshoot/troubleshoot-connectivity/" target="_blank"&gt;Troubleshoot connectivity | Dynatrace Developer&lt;/A&gt;&amp;nbsp;&amp;nbsp;, so all the connection tests work as expected, both for connectivity regarding our machine and for node.js.&lt;/P&gt;&lt;P&gt;However, when we start the app, the SSO-URL seems to be not reachable.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="giovannialb_1-1744891827534.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/27610i967995550F1F19DE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="giovannialb_1-1744891827534.png" alt="giovannialb_1-1744891827534.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;We set up also&amp;nbsp;NODE_EXTRA_CA_CERTS&amp;nbsp; as local variable and updated the npm configuration:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;$env:NODE_EXTRA_CA_CERTS=path\to\certificate.pem
npm config set cafile "path\to\certificate.pem"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but it seems not to work.&lt;/P&gt;&lt;P&gt;Do you have any insight on this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;P&gt;Giovanni&lt;/P&gt;</description>
    <pubDate>Thu, 17 Apr 2025 12:12:18 GMT</pubDate>
    <dc:creator>giovannialb</dc:creator>
    <dc:date>2025-04-17T12:12:18Z</dc:date>
    <item>
      <title>Dynatrace App Toolkit - ERESOLVE unable to resolve dependency tree</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/274858#M1379</link>
      <description>&lt;P&gt;Hi devs!&lt;/P&gt;&lt;P&gt;We are trying to download and set up the Dynatrace App Toolkit. We execute the following command to initialize a new app, after downloading the app templates in the target folder:&lt;/P&gt;&lt;PRE&gt;npx dt-app@latest create --environment-url https://{environmentid}.apps.dynatrace.com --template-dir .\dt-app-templates-main\templates\default&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;And the output is the following:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Error: Installing the dependencies failed.
Please try to run npm install
npm ERR! code ETARGET
npm ERR! notarget No matching version found for &lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/64071"&gt;@dynatrace&lt;/a&gt;-sdk/client-query@^1.20.0.
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We've noticed that, in the&amp;nbsp;&lt;STRONG&gt;package.json&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;file of the default template, some npm packages require versions that are not found.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For instance, consider the dependecy:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/Dynatrace/dt-app-templates/blob/402fb136c063c3e0ee349088fa472d6a159a4d77/templates/default/package.json#L24C1-L25C1" target="_blank" rel="noopener noreferrer"&gt;https://github.com/Dynatrace/dt-app-templates/blob/402fb136c063c3e0ee349088fa472d6a159a4d77/templates/default/package.json#L24C1-L25C1&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;nbsp; &amp;nbsp; "@dynatrace-sdk/client-query": "^1.20.0",&lt;/PRE&gt;&lt;P&gt;On &lt;A href="http://www.npmjs.com" target="_blank" rel="noopener"&gt;www.npmjs.com&lt;/A&gt;, we see that the latest version is&amp;nbsp;&lt;STRONG&gt;1.18.1&amp;nbsp;&lt;/STRONG&gt;:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.npmjs.com/package/@dynatrace-sdk/client-query" target="_blank" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/@dynatrace-sdk/client-query&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Other dependencies for which the required version is not found on npmjs are&lt;/P&gt;&lt;PRE&gt;"@dynatrace/strato-components": "^1.4.0",&lt;BR /&gt;"@dynatrace/strato-components-preview": "^1.4.0",&lt;BR /&gt;"@dynatrace/strato-icons": "^1.3.0",&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, after modifying the package.json file with versions that matches the one found on npmjs.com, some errors about deprecated dependencies are prompted:&lt;/P&gt;&lt;PRE&gt;Error: Installing the dependencies failed.&lt;BR /&gt;Please try to run npm install&lt;BR /&gt;npm WARN deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.&lt;BR /&gt;npm WARN deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported&lt;BR /&gt;npm WARN deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported&lt;BR /&gt;npm WARN deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead&lt;BR /&gt;npm WARN deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead&lt;BR /&gt;npm WARN deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.&lt;BR /&gt;npm ERR! code EEXIST&lt;BR /&gt;npm ERR! syscall copyfile&lt;BR /&gt;npm ERR! path C:\Users\c330613\AppData\Local\npm-cache\_cacache\tmp\d860fc81&lt;BR /&gt;npm ERR! dest C:\Users\c330613\AppData\Local\npm-cache\_cacache\content-v2\sha512\25\0e\53b8c8b8e4ec22e3f048300241a12428389bb5da83a4fe0003aa57142fd24474707cbf28d44acc6a78d5e79971e360a322d96718b5ecc610486a508fc4da &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;npm ERR! errno -4082&lt;BR /&gt;npm ERR! EBUSY: resource busy or locked, copyfile 'C:\Users\c330613\AppData\Local\npm-cache\_cacache\tmp\d860fc81' -&amp;gt; 'C:\Users\c330613\AppData\Local\npm-cache\_cacache\content-v2\sha512\25\0e\53b8c8b8e4ec22e3f048300241a12428389bb5da83a4fe0003aa57142fd24474707cbf28d44acc6a78d5e79971e360a322d96718b5ecc610486a508fc4da'&lt;BR /&gt;npm ERR! File exists: C:\Users\c330613\AppData\Local\npm-cache\_cacache\content-v2\sha512\25\0e\53b8c8b8e4ec22e3f048300241a12428389bb5da83a4fe0003aa57142fd24474707cbf28d44acc6a78d5e79971e360a322d96718b5ecc610486a508fc4da&lt;BR /&gt;npm ERR! Remove the existing file and try again, or run npm&lt;BR /&gt;npm ERR! with --force to overwrite files recklessly.&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please help us with this situation? Which configuration should be applied for installing the correct packages (and versions) ? Are there other repositories?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Other informations:&lt;/P&gt;&lt;P&gt;node version: v20.2.0&lt;/P&gt;&lt;P&gt;npm ping result:&lt;/P&gt;&lt;PRE&gt;npm notice PING https://registry.npmjs.org/&lt;BR /&gt;npm notice PONG 416ms&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Giovanni&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2025 12:43:31 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/274858#M1379</guid>
      <dc:creator>giovannialb</dc:creator>
      <dc:date>2025-04-10T12:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace App Toolkit - ERESOLVE unable to resolve dependency tree</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275184#M1385</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello! Thanks for reaching out!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Each version of dt-app uses a specific GitHub commit to ensure compatibility between the dt-app CLI and the templates.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The current public dt-app version is&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;0.139.1&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;, which corresponds to this &lt;A href="https://github.com/Dynatrace/dt-app-templates/commit/3d59753e53312b72729cf5b130680a288030e86d" target="_self"&gt;commit&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You can find a list of all tagged commits &lt;A href="https://github.com/Dynatrace/dt-app-templates/tags" target="_self"&gt;here&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Once your app &lt;/SPAN&gt;&lt;SPAN&gt;is created&lt;/SPAN&gt;&lt;SPAN&gt; or dependencies are adjusted, you can use the&amp;nbsp;&lt;A href="https://developer.dynatrace.com/develop/app-toolkit/commands/#dt-app-update" target="_self"&gt;dt-app update&lt;/A&gt;&amp;nbsp;command to ensure &lt;/SPAN&gt;&lt;SPAN&gt;you're&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;up to date and all automatic migrations &lt;/SPAN&gt;&lt;SPAN&gt;are executed&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Considering the above, I would suggest doing the following:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Manually correct dependencies inside the package.json to the ones used in `&lt;A href="https://github.com/Dynatrace/dt-app-templates/commit/3d59753e53312b72729cf5b130680a288030e86d?diff=split#diff-cf2a6d486ce0bb36ecc8b7e15c7c129eea32c94f14b80bb13cdd2ab7da366256`" target="_blank" rel="noopener"&gt;https://github.com/Dynatrace/dt-app-templates/commit/3d59753e53312b72729cf5b130680a288030e86d?diff=split#diff-cf2a6d486ce0bb36ecc8b7e15c7c129eea32c94f14b80bb13cdd2ab7da366256`&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Execute `npm i`&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Execute `npx dt-app update`&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;If you're trying to create an internal app template, please always base it on the commit that is tagged with the publicly available version and use `npm dt-app update` to keep it up-to-date&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you have any additional questions or problems, just let me know!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 11:15:52 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275184#M1385</guid>
      <dc:creator>tomislav_zorcec</dc:creator>
      <dc:date>2025-04-15T11:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace App Toolkit - ERESOLVE unable to resolve dependency tree</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275427#M1389</link>
      <description>&lt;P&gt;Thank you! This indeed resolved our issue, and we installed the app correctly!&lt;/P&gt;&lt;P&gt;One more thing if I may ask: we completed all the checks in the troubleshooting connectivity page of the documentation:&amp;nbsp;&lt;A href="https://developer.dynatrace.com/develop/troubleshoot/troubleshoot-connectivity/" target="_blank"&gt;Troubleshoot connectivity | Dynatrace Developer&lt;/A&gt;&amp;nbsp;&amp;nbsp;, so all the connection tests work as expected, both for connectivity regarding our machine and for node.js.&lt;/P&gt;&lt;P&gt;However, when we start the app, the SSO-URL seems to be not reachable.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="giovannialb_1-1744891827534.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/27610i967995550F1F19DE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="giovannialb_1-1744891827534.png" alt="giovannialb_1-1744891827534.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;We set up also&amp;nbsp;NODE_EXTRA_CA_CERTS&amp;nbsp; as local variable and updated the npm configuration:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;$env:NODE_EXTRA_CA_CERTS=path\to\certificate.pem
npm config set cafile "path\to\certificate.pem"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but it seems not to work.&lt;/P&gt;&lt;P&gt;Do you have any insight on this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;P&gt;Giovanni&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 12:12:18 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275427#M1389</guid>
      <dc:creator>giovannialb</dc:creator>
      <dc:date>2025-04-17T12:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace App Toolkit - ERESOLVE unable to resolve dependency tree</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275428#M1390</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I am happy to hear that your problem was resolved!&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Connectivity problems are challenging to debug outside your network, but I can try to guide you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Can you provide me with more details about your internal network:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Do you have to use a proxy to connect to the internet?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Do you have to authenticate to proxy? What kind of authentication proxy requires?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Do you know of any other restrictions?&amp;nbsp;&lt;/SPAN&gt;(eq. &lt;SPAN&gt;local&lt;/SPAN&gt;&lt;SPAN&gt; firewall, &lt;/SPAN&gt;&lt;SPAN&gt;dns&lt;/SPAN&gt;&lt;SPAN&gt; restrictions&lt;/SPAN&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 17 Apr 2025 12:34:32 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275428#M1390</guid>
      <dc:creator>tomislav_zorcec</dc:creator>
      <dc:date>2025-04-17T12:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace App Toolkit - ERESOLVE unable to resolve dependency tree</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275439#M1391</link>
      <description>&lt;P&gt;Thanks for your kindness and prompt response!&lt;/P&gt;&lt;P&gt;So after some more investigations, it appears that I cannot authenticate to the environment:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;PS C:\Users\&amp;gt; Invoke-WebRequest -Uri https://{environmentid}.apps.dynatrace.com

Invoke-WebRequest : {"error":{"code":401,"message":"Authentication required","details":{"traceId":"260ffed84cc1e6f01fd5dd5be95ddb4c"}}}&lt;/LI-CODE&gt;&lt;P&gt;But it seems that the enpoint is correctly reached:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;PS C:\Users&amp;gt; Invoke-WebRequest -Uri https://{environmentid}.apps.dynatrace.com/platform/oauth2/authorization/dynatrace-sso

StatusCode        : 200
StatusDescription : OK 
RawContent        : HTTP/1.1 200 OK
                    Connection: keep-alive
                    Content-Length: 3035
                    Content-Type: text/html;charset=utf-8
                    Date: Thu, 17 Apr 2025 13:13:30 GMT&lt;/LI-CODE&gt;&lt;P&gt;Also on node.js :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;PS C:\Users\&amp;gt; node -e "fetch('https://{environmentid}.apps.dynatrace.com').then(console.log)"

Response {
  [Symbol(realm)]: null,
  [Symbol(state)]: {
    aborted: false,
    rangeRequested: false,
    timingAllowPassed: true,
    requestIncludesCredentials: true,
    type: 'default',
    status: 401,&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;PS C:\Users\&amp;gt; node -e "fetch('https://{environmentid}.apps.dynatrace.com/platform/oauth2/authorization/dynatrace-sso').then(console.log)"

Response {
  [Symbol(realm)]: null,
  [Symbol(state)]: {
    aborted: false,
    rangeRequested: false,
    timingAllowPassed: true,
    requestIncludesCredentials: false,
    type: 'default',
    status: 200,&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;About our internal network: we have an authenticated proxy to connect to internet endpoints, but looking at the previous outputs, the&lt;SPAN&gt;&amp;nbsp;environment seems to be reachable from our machine within the corporate network, correct?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Do you know how authentication is supposed to be performed? Are there other parameters that we need to specify?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 13:27:36 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275439#M1391</guid>
      <dc:creator>giovannialb</dc:creator>
      <dc:date>2025-04-17T13:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace App Toolkit - ERESOLVE unable to resolve dependency tree</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275441#M1392</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Thank you for sharing the details with me!&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Yes, it looks like the required endpoints are reachable from your PowerShell.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;As the next step, please use the internal proxy with the dt-app by setting the following environment variable:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;DT_APP_HTTPS_PROXY - With the following format: (http or https)://&amp;lt;username&amp;gt;:&amp;lt;password&amp;gt;@&amp;lt;host&amp;gt;:&amp;lt;port&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 17 Apr 2025 13:43:11 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275441#M1392</guid>
      <dc:creator>tomislav_zorcec</dc:creator>
      <dc:date>2025-04-17T13:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace App Toolkit - ERESOLVE unable to resolve dependency tree</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275469#M1395</link>
      <description>&lt;P&gt;Thanks for the suggestion: I applied the env variable as described, with our internal proxy, but unfortunately we recieve the same error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried to authenticate with the "Dynatrace apps" VS extention, but we recieve the following error:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Error: Error fetching token: Tokens not found
	at CO.fetchTokens (c:\Users\xxxxx\.vscode\extensions\dynatrace.dynatrace-apps-0.28.1\lib\extension.js:776:5033)
	at async CO.createSession (c:\Users\xxxxx\.vscode\extensions\dynatrace.dynatrace-apps-0.28.1\lib\extension.js:776:4312)
	at async Sw.$createSession (file:///c:/Users/xxxxx/AppData/Local/Programs/Microsoft%20VS%20Code/resources/app/out/vs/workbench/api/node/extensionHostProcess.js:113:3533)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These are app logs after we performed the command&amp;nbsp;&lt;STRONG&gt;npx dt-app dev&lt;/STRONG&gt;:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;2025-04-18T10:33:53.911Z DEBUG [AUTH] Retrieving SSO-URL for environment 'https://{environmentid}.apps.dynatrace.com'
2025-04-18T10:33:53.911Z DEBUG [HTTP(S)] Execute GET request without allowing redirection to 'https://{environmentid}.apps.dynatrace.com/platform/oauth2/authorization/dynatrace-sso'
2025-04-18T10:33:54.000Z DEBUG [AUTH] SSO-URL for 'https://{environmentid}.apps.dynatrace.com' could not be processed.
2025-04-18T10:33:54.000Z DEBUG [AUTH] Error: fetch failed
2025-04-18T10:33:54.002Z ERROR Error: SSO-URL for 'https://{environmentid}.apps.dynatrace.com' could not be processed.
fetch failed&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 09:31:47 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275469#M1395</guid>
      <dc:creator>giovannialb</dc:creator>
      <dc:date>2025-04-18T09:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace App Toolkit - ERESOLVE unable to resolve dependency tree</title>
      <link>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275471#M1396</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It might be worth checking your firewall settings if the proxy isn't resolving the issue. It's possible that the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;dt-app CLI&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is an unknown application, and access to the network/internet is being blocked.&lt;/P&gt;&lt;P&gt;I recommend discussing this further with your IT department. For additional guidance, please contact Dynatrace support, as this issue may require a more detailed investigation:&amp;nbsp;&lt;A href="https://one.dynatrace.com/hc/en-us/requests" target="_blank" rel="noopener noreferrer"&gt;https://one.dynatrace.com/hc/en-us/requests&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 10:16:35 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Developer-Q-A-Forum/Dynatrace-App-Toolkit-ERESOLVE-unable-to-resolve-dependency-tree/m-p/275471#M1396</guid>
      <dc:creator>tomislav_zorcec</dc:creator>
      <dc:date>2025-04-18T10:16:35Z</dc:date>
    </item>
  </channel>
</rss>

