<?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: Exchanging code for token in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630901#M29139</link>
    <description>&lt;P&gt;Thanks for following up. I'm glad to hear you got this working. No further action is required on your part for this thread.&lt;/P&gt;</description>
    <pubDate>Fri, 21 Oct 2022 15:07:13 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2022-10-21T15:07:13Z</dc:date>
    <item>
      <title>Exchanging code for token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630173#M29119</link>
      <description>&lt;P&gt;I already have a topic, but I asked the wrong question and messed everything up. I think me need to create the right thread for the right question&lt;/P&gt;
&lt;P&gt;&amp;nbsp;here is the code taken from the official dropbox source. I just tried to figure it out by pulling it into an empty project in parts, but when I gave up. turned to the original source, replacing the data with his own&lt;/P&gt;
&lt;P&gt;if I take an example from github, and just change the AppKey and AppSecret and set my port, then following error: an error occurred while sending the request at the moment Exchanging code for token here&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;var tokenResult = await DropboxOAuth2Helper.ProcessCodeFlowAsync(redirectUri, ApiKey, ApiSecret, RedirectUri.ToString(), state);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;all code from dropbox github&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;namespace OauthTest
{
    using System;
    using System.IO;
    using System.Linq;
    using System.Net;
    using System.Net.Http;
    using System.Runtime.InteropServices;
    using System.Threading.Tasks;

    using Dropbox.Api;

    partial class Program
    {
        // Add an ApiKey (from https://www.dropbox.com/developers/apps) here
        private const string ApiKey = "---";

        // Add an ApiSecret (from https://www.dropbox.com/developers/apps) here
        private const string ApiSecret = "---";

        // This loopback host is for demo purpose. If this port is not
        // available on your machine you need to update this URL with an unused port.
        private const string LoopbackHost = "http://127.0.0.1:4200/"; //deffault version 52475 my 4200

        // URL to receive OAuth 2 redirect from Dropbox server.
        // You also need to register this redirect URL on https://www.dropbox.com/developers/apps.
        private readonly Uri RedirectUri = new Uri(LoopbackHost + "authorize");

        // URL to receive access token from JS.
        private readonly Uri JSRedirectUri = new Uri(LoopbackHost + "token");


        [DllImport("kernel32.dll", ExactSpelling = true)]
        private static extern IntPtr GetConsoleWindow();

        [DllImport("user32.dll")]
        [return: MarshalAs(UnmanagedType.Bool)]
        private static extern bool SetForegroundWindow(IntPtr hWnd);

        [STAThread]
        static int Main(string[] args)
        {
            var instance = new Program();
            try
            {
                Console.WriteLine("Example OAuth Application");
                var task = Task.Run((Func&amp;lt;Task&amp;lt;int&amp;gt;&amp;gt;)instance.Run);

                task.Wait();

                return task.Result;
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
                throw e;
            }
        }

        private async Task&amp;lt;int&amp;gt; Run()
        {
            DropboxCertHelper.InitializeCertPinning();

            string[] scopeList = new string[3] { "files.metadata.read", "files.content.read", "account_info.read" };
            var uid = await this.AcquireAccessToken(scopeList, IncludeGrantedScopes.None);
            if (string.IsNullOrEmpty(uid))
            {
                return 1;
            }

            // Specify socket level timeout which decides maximum waiting time when no bytes are
            // received by the socket.
            var httpClient = new HttpClient(new WebRequestHandler { ReadWriteTimeout = 10 * 1000 })
            {
                // Specify request level timeout which decides maximum time that can be spent on
                // download/upload files.
                Timeout = TimeSpan.FromMinutes(20)
            };

            try
            {
                var config = new DropboxClientConfig("SimpleOAuthApp")
                {
                    HttpClient = httpClient
                };

                var client = new DropboxClient(Settings.Default.AccessToken, Settings.Default.RefreshToken, ApiKey, ApiSecret, config);

                // This call should succeed since the correct scope has been acquired
                await GetCurrentAccount(client);
                
                Console.WriteLine("Refreshing without scope account_info.read");
                var newScopes = new string[] { "files.metadata.read", "files.content.read" };
                await client.RefreshAccessToken(newScopes);
                try
                {
                    // This should fail since token does not have "account_info.read" scope  
                    await GetCurrentAccount(client);
                }
                catch (Exception)
                {
                    Console.WriteLine("Correctly failed with invalid scope");
                }
                Console.WriteLine("Attempting to try again with include_granted_scopes");
                await this.AcquireAccessToken(newScopes, IncludeGrantedScopes.User);
                var clientNew = new DropboxClient(Settings.Default.AccessToken, Settings.Default.RefreshToken, ApiKey, ApiSecret, config);
                await GetCurrentAccount(clientNew);

                Console.WriteLine("Oauth Test Complete!");
                Console.WriteLine("Exit with any key");
                Console.ReadKey();
            }
            catch (HttpException e)
            {
                Console.WriteLine("Exception reported from RPC layer");
                Console.WriteLine("    Status code: {0}", e.StatusCode);
                Console.WriteLine("    Message    : {0}", e.Message);
                if (e.RequestUri != null)
                {
                    Console.WriteLine("    Request uri: {0}", e.RequestUri);
                }
            }

            return 0;
        }

        /// &amp;lt;summary&amp;gt;
        /// Handles the redirect from Dropbox server. Because we are using token flow, the local
        /// http server cannot directly receive the URL fragment. We need to return a HTML page with
        /// inline JS which can send URL fragment to local server as URL parameter.
        /// &amp;lt;/summary&amp;gt;
        /// &amp;lt;param name="http"&amp;gt;The http listener.&amp;lt;/param&amp;gt;
        /// &amp;lt;returns&amp;gt;The &amp;lt;see cref="Task"/&amp;gt;&amp;lt;/returns&amp;gt;
        private async Task HandleOAuth2Redirect(HttpListener http)
        {
            var context = await http.GetContextAsync();

            // We only care about request to RedirectUri endpoint.
            while (context.Request.Url.AbsolutePath != RedirectUri.AbsolutePath)
            {
                context = await http.GetContextAsync();
            }

            context.Response.ContentType = "text/html";

            // Respond with a page which runs JS and sends URL fragment as query string
            // to TokenRedirectUri.
            using (var file = File.OpenRead("index.html"))
            {
                file.CopyTo(context.Response.OutputStream);
            }

            context.Response.OutputStream.Close();
        }

        /// &amp;lt;summary&amp;gt;
        /// Handle the redirect from JS and process raw redirect URI with fragment to
        /// complete the authorization flow.
        /// &amp;lt;/summary&amp;gt;
        /// &amp;lt;param name="http"&amp;gt;The http listener.&amp;lt;/param&amp;gt;
        /// &amp;lt;returns&amp;gt;The &amp;lt;see cref="OAuth2Response"/&amp;gt;&amp;lt;/returns&amp;gt;
        private async Task&amp;lt;Uri&amp;gt; HandleJSRedirect(HttpListener http)
        {
            var context = await http.GetContextAsync();

            // We only care about request to TokenRedirectUri endpoint.
            while (context.Request.Url.AbsolutePath != JSRedirectUri.AbsolutePath)
            {
                context = await http.GetContextAsync();
            }

            var redirectUri = new Uri(context.Request.QueryString["url_with_fragment"]);
            
            return redirectUri;
        }

        /// &amp;lt;summary&amp;gt;
        /// Acquires a dropbox access token and saves it to the default settings for the app.
        /// &amp;lt;para&amp;gt;
        /// This fetches the access token from the applications settings, if it is not found there
        /// (or if the user chooses to reset the settings) then the UI in &amp;lt;see cref="LoginForm"/&amp;gt; is
        /// displayed to authorize the user.
        /// &amp;lt;/para&amp;gt;
        /// &amp;lt;/summary&amp;gt;
        /// &amp;lt;returns&amp;gt;A valid uid if a token was acquired or null.&amp;lt;/returns&amp;gt;
        private async Task&amp;lt;string&amp;gt; AcquireAccessToken(string[] scopeList, IncludeGrantedScopes includeGrantedScopes)
        {
            Console.Write("Reset settings (Y/N) ");
            if (Console.ReadKey().Key == ConsoleKey.Y)
            {
                Settings.Default.Reset();
            }
            Console.WriteLine();

            var accessToken = Settings.Default.AccessToken;
            var refreshToken = Settings.Default.RefreshToken;

            if (string.IsNullOrEmpty(accessToken))
            {
                try
                {
                    Console.WriteLine("Waiting for credentials.");
                    var state = Guid.NewGuid().ToString("N");
                    var authorizeUri = DropboxOAuth2Helper.GetAuthorizeUri(OAuthResponseType.Code, ApiKey, RedirectUri, state: state, tokenAccessType : TokenAccessType.Offline, scopeList : scopeList, includeGrantedScopes: includeGrantedScopes);
                    var http = new HttpListener();
                    http.Prefixes.Add(LoopbackHost);

                    http.Start();

                    System.Diagnostics.Process.Start(authorizeUri.ToString());

                    // Handle OAuth redirect and send URL fragment to local server using JS.
                    await HandleOAuth2Redirect(http);

                    // Handle redirect from JS and process OAuth response.
                    var redirectUri = await HandleJSRedirect(http);

                    Console.WriteLine("Exchanging code for token");
                    var tokenResult = await DropboxOAuth2Helper.ProcessCodeFlowAsync(redirectUri, ApiKey, ApiSecret, RedirectUri.ToString(), state);
                    Console.WriteLine("Finished Exchanging Code for Token");
                    // Bring console window to the front.
                    SetForegroundWindow(GetConsoleWindow());
                    accessToken = tokenResult.AccessToken;
                    refreshToken = tokenResult.RefreshToken;
                    var uid = tokenResult.Uid;
                    Console.WriteLine("Uid: {0}", uid);
                    Console.WriteLine("AccessToken: {0}", accessToken);
                    if (tokenResult.RefreshToken != null)
                    {
                        Console.WriteLine("RefreshToken: {0}", refreshToken);
                        Settings.Default.RefreshToken = refreshToken;
                    }
                    if (tokenResult.ExpiresAt != null)
                    {
                        Console.WriteLine("ExpiresAt: {0}", tokenResult.ExpiresAt);
                    }
                    if (tokenResult.ScopeList != null)
                    {
                        Console.WriteLine("Scopes: {0}", String.Join(" ", tokenResult.ScopeList));
                    }
                    Settings.Default.AccessToken = accessToken;
                    Settings.Default.Uid = uid;
                    Settings.Default.Save();
                    http.Stop();
                    return uid;
                }
                catch (Exception e)
                {
                    Console.WriteLine("Error: {0}", e.Message);
                    return null;
                }
            }

            return null;
        }

        /// &amp;lt;summary&amp;gt;
        /// Gets information about the currently authorized account.
        /// &amp;lt;para&amp;gt;
        /// This demonstrates calling a simple rpc style api from the Users namespace.
        /// &amp;lt;/para&amp;gt;
        /// &amp;lt;/summary&amp;gt;
        /// &amp;lt;param name="client"&amp;gt;The Dropbox client.&amp;lt;/param&amp;gt;
        /// &amp;lt;returns&amp;gt;An asynchronous task.&amp;lt;/returns&amp;gt;
        private async Task GetCurrentAccount(DropboxClient client)
        {
            try
            {
                Console.WriteLine("Current Account:");
                var full = await client.Users.GetCurrentAccountAsync();

                Console.WriteLine("Account id    : {0}", full.AccountId);
                Console.WriteLine("Country       : {0}", full.Country);
                Console.WriteLine("Email         : {0}", full.Email);
                Console.WriteLine("Is paired     : {0}", full.IsPaired ? "Yes" : "No");
                Console.WriteLine("Locale        : {0}", full.Locale);
                Console.WriteLine("Name");
                Console.WriteLine("  Display  : {0}", full.Name.DisplayName);
                Console.WriteLine("  Familiar : {0}", full.Name.FamiliarName);
                Console.WriteLine("  Given    : {0}", full.Name.GivenName);
                Console.WriteLine("  Surname  : {0}", full.Name.Surname);
                Console.WriteLine("Referral link : {0}", full.ReferralLink);

                if (full.Team != null)
                {
                    Console.WriteLine("Team");
                    Console.WriteLine("  Id   : {0}", full.Team.Id);
                    Console.WriteLine("  Name : {0}", full.Team.Name);
                }
                else
                {
                    Console.WriteLine("Team - None");
                }
            }
            catch (Exception e)
            {
                throw e;
            }

        }
    }
}&lt;/LI-CODE&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;</description>
      <pubDate>Tue, 18 Oct 2022 23:35:23 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630173#M29119</guid>
      <dc:creator>Shy1</dc:creator>
      <dc:date>2022-10-18T23:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: Exchanging code for token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630421#M29125</link>
      <description>&lt;P&gt;It looks like you're attempting to run &lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/main/dropbox-sdk-dotnet/Examples/OauthBasic/Program.cs" target="_blank"&gt;the "OauthBasic" example from the Dropbox .NET SDK here&lt;/A&gt;. That's an example meant to show how a server-side app can process the OAuth app authorization flow to receive an access token and refresh token for making API calls.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I understand that can be tricky to set up from scratch, so I do recommend running that sample as provided without modifications first, other than plugging in your app key/secret and potentially different port number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It sounds like you've done so, that is, are running the example unmodified except for app key/secret and port, and are receiving an error during the ProcessCodeFlowAsync call. Is that correct?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, can you show the full error you're getting? I would generally expect the error to contain more information than just that message, though you may need to inspect the exception object a bit. Feel free to share a screenshot if that would better illustrate what you're currently seeing. Thanks in advance! &lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 15:23:48 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630421#M29125</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-10-19T15:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Exchanging code for token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630529#M29130</link>
      <description>&lt;LI-SPOILER&gt;Помощник по отладке управляемого кода "DisconnectedContext" : "Переход к COM-контексту 0x7c6698 для данного объекта RuntimeCallableWrapper завершился следующей ошибкой: Исключение из HRESULT: 0xE0434352. Обычно это происходит из-за того, что COM-контекст 0x7c6698, в котором был создан этот объект RuntimeCallableWrapper, отключен или занят другой операцией. Выполняется освобождение интерфейсов из текущего COM-контекста (COM-контекст 0x7c6750). Это может привести к повреждению или потере данных. Для устранения этой проблемы убедитесь в том, что все контексты, подразделения и потоки будут существовать и оставаться доступными для перехода к контексту до полного завершения работы приложения с объектами RuntimeCallableWrapper, представляющими находящиеся в них COM-компоненты."&lt;/LI-SPOILER&gt;&lt;P&gt;sorry for not english error&amp;nbsp;&lt;SPAN class=""&gt;if you believe the error, then it reports that the COM context is busy or disabled.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;and its was happen at the&amp;nbsp;var redirectUri = await HandleJSRedirect(http); and next was catch the exception&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;InnerException = {"The request was aborted: Failed to create SSL/TLS secure channel."}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;StackTrace = " в System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\r\n в System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\r\n в System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.Configur...&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;maybe I took the wrong example? maybe you can tell me how to connect to the API in an easier way? I’m not very strong in this, I practically don’t understand anything, I have an xamarin application that I would like to save the picture and download it when needed, maybe I approached the connection issue incorrectly or its correct way?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 20:50:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630529#M29130</guid>
      <dc:creator>Shy1</dc:creator>
      <dc:date>2022-10-19T20:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Exchanging code for token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630535#M29131</link>
      <description>&lt;P&gt;if be clear OAthTest OAtestPCKE SimpleTest all code throw errors&amp;nbsp;&lt;SPAN class=""&gt;at about one moment, could it be that I didn’t set up something on the computer from not knowing? The problem is that if I manually go all the way through the browser then I get a response and I get the code in the browser window and I think if I copy it by hand and paste it into ReadLne it could work, but what am I doing wrong or what I have a problem, can I record a video of how I work with this?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 21:08:21 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630535#M29131</guid>
      <dc:creator>Shy1</dc:creator>
      <dc:date>2022-10-19T21:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: Exchanging code for token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630646#M29132</link>
      <description>&lt;P&gt;I see you're getting an error "&lt;SPAN class=""&gt;Failed to create SSL/TLS secure channel&lt;/SPAN&gt;", which indicates your system wasn't able to establish a secure connection to the Dropbox API servers for the HTTPS requests needed to perform API calls. This may be because your system doesn't support a sufficient version of TLS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For reference, &lt;SPAN class=" author-d-42z69zz85zx9z84zz79zvz66zz71z4yz65zz67znhz79zc7fz89zz67z5z82zikmz70zz75ztz72zz83zuyz68zz122zz69z9z122zz122zv35e"&gt;Dropbox retired support for TLS 1.0 and 1.1 earlier this year. The Dropbox API servers now only support connections using TLS 1.2. You'll need to make sure your app/network client/environment support TLS 1.2 in order to continue making Dropbox API calls.&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV&gt;&lt;SPAN class=" author-d-42z69zz85zx9z84zz79zvz66zz71z4yz65zz67znhz79zc7fz89zz67z5z82zikmz70zz75ztz72zz83zuyz68zz122zz69z9z122zz122zv35e"&gt;&lt;SPAN class=" author-d-42z69zz85zx9z84zz79zvz66zz71z4yz65zz67znhz79zc7fz89zz67z5z82zikmz70zz75ztz72zz83zuyz68zz122zz69z9z122zz122zv35e"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;DIV&gt;&lt;SPAN class=" author-d-42z69zz85zx9z84zz79zvz66zz71z4yz65zz67znhz79zc7fz89zz67z5z82zikmz70zz75ztz72zz83zuyz68zz122zz69z9z122zz122zv35e"&gt;For your client/environment, please refer to the relevant documentation for information on enabling the relevant platform support. For example, Microsoft in particular appears to have some resources here which may be helpful:&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN class=" author-d-42z69zz85zx9z84zz79zvz66zz71z4yz65zz67znhz79zc7fz89zz67z5z82zikmz70zz75ztz72zz83zuyz68zz122zz69z9z122zz122zv35e"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;UL class="listtype-bullet listindent1 list-bullet1"&gt;
&lt;LI&gt;&lt;SPAN class="attrlink url author-d-42z69zz85zx9z84zz79zvz66zz71z4yz65zz67znhz79zc7fz89zz67z5z82zikmz70zz75ztz72zz83zuyz68zz122zz69z9z122zz122zv35e url"&gt;&lt;A class="attrlink" href="https://docs.microsoft.com/en-us/dotnet/framework/network-programming/tls" target="_blank" rel="noreferrer nofollow noopener" data-target-href="https://docs.microsoft.com/en-us/dotnet/framework/network-programming/tls"&gt;https://docs.microsoft.com/en-us/dotnet/framework/network-programming/tls&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN class="attrlink url author-d-42z69zz85zx9z84zz79zvz66zz71z4yz65zz67znhz79zc7fz89zz67z5z82zikmz70zz75ztz72zz83zuyz68zz122zz69z9z122zz122zv35e url"&gt;&lt;A class="attrlink" href="https://docs.microsoft.com/en-us/mem/configmgr/core/plan-design/security/enable-tls-1-2-client" target="_blank" rel="noreferrer nofollow noopener" data-target-href="https://docs.microsoft.com/en-us/mem/configmgr/core/plan-design/security/enable-tls-1-2-client"&gt;https://docs.microsoft.com/en-us/mem/configmgr/core/plan-design/security/enable-tls-1-2-client&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 20 Oct 2022 12:59:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630646#M29132</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-10-20T12:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Exchanging code for token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630780#M29134</link>
      <description>&lt;P&gt;thanks for help! i just set the target 4.8 net and it work correclty&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 22:07:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630780#M29134</guid>
      <dc:creator>Shy2</dc:creator>
      <dc:date>2022-10-20T22:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Exchanging code for token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630781#M29135</link>
      <description>&lt;P&gt;how to close question? &lt;SPAN&gt;Or is there nothing else I need to do?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 22:14:50 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630781#M29135</guid>
      <dc:creator>Shy2</dc:creator>
      <dc:date>2022-10-20T22:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Exchanging code for token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630901#M29139</link>
      <description>&lt;P&gt;Thanks for following up. I'm glad to hear you got this working. No further action is required on your part for this thread.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2022 15:07:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exchanging-code-for-token/m-p/630901#M29139</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-10-21T15:07:13Z</dc:date>
    </item>
  </channel>
</rss>

