hi
I using with df 2022 same code that with df 2017 (v.19) still work correctly. calling HttpGetRequest with df20.1 I get now page not found. code it is the same identical

also trying this directly on browser address "https://cryptonote.exchange/api/v2/members/me" it get corret result and page is found. of course auth is fails like follow
Code:
{"error":{"code":2001,"message":"2001: Authorization failed"}}
using df code (that work with df19) with df20.1 not work and page is not found

Code:
 
....
Move "/api/v2/members/me/" to sPath
Get HttpGetRequest  of oHttpTransfer  spath  to  bOk
                          Get Create (RefClass(cJsonObject)) to hoJsonObj
                    If (bOk) Begin
                            Get psData  of oHttpTransfer to sjsonresponse 
....
sjsonresponse with df19 is something like

HTML Code:
{"sn":"PEAAKSUVJ7TTIO","email":"admin@dinastycoin.com","accounts":[{"currency":"btc","balance":"0.003001377764","locked":"0.0"},{"currency":"dcy","balance":"32917.515","locked":"0.0"},{"currency":"dia","balance":"0.0","locked":"0.0"},{"currency":"eth","balance":"0.0","locked":"0.0"},{"currency":"fit","balance":"0.0","locked":"0.0"},{"currency":"ltc","balance":"0.03438198","locked":"0.0"},{"currency":"usdt","balance":"1.995974","locked":"0.0"},{"currency":"xmr","balance":"0.0","locked":"0.0"}]}
with df20.1 is

HTML Code:
<!DOCTYPE html><html><head>  <title>The page you were looking for doesn't exist (404)</title>  <style type="text/css">    body { font-weight: 600; background-color: #fff; color: #000000; text-align: center; font-family: arial, sans-serif; }    div.dialog {      width: 70%;      padding: 0 4em;      margin: 4em auto 0 auto;      border: 1px solid #ccc;      border-right-color: #999;      border-bottom-color: #999;      line-height: 31px;       letter-spacing: -0.5px;       background: #FFFFFF;      box-shadow: 0px 4px 54px rgba(0, 0, 0, 0.08);      border-radius: 7px;    }    h1 { font-size: 150px; }    p { font-size: 30px; }    a.button {      background: #FFFFFF;      box-shadow: 0px 4px 54px rgba(0, 0, 0, 0.08);      border-radius: 7px;      padding: 10px 40px;      border: 1.4px solid #45B64B;      color: #000000;      font-size: 24px;      line-height: 31px;      text-decoration: none;    }    .button-box {      margin: 150px auto 120px;    }  </style></head>
<body>  <!-- This file lives in public/404.html -->  <div class="dialog">    <h1>500</h1>    <p>We're sorry, but something went wrong.</p>    <div class="button-box">      <a href="https://cryptonote.exchange" class="button">Return to Home Page</a>    </div>  </div></body></html>
what I have to change on my code to get same result I have with df19 ?
regards
Franco