<?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 URL Unauthorized access error while accessing files from dropbox? in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92729#M2824</link>
    <description>&lt;P&gt;we are accessing  having a problem in URL we have a file named xyx (1).jpg while passing this to server we are getting response as Unauthorized Access. May I Know how to pass this request to Server?&lt;/P&gt;

&lt;P&gt;Here am using DropBox API for Winrt C#.&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:44:14 GMT</pubDate>
    <dc:creator>sobharaj m.</dc:creator>
    <dc:date>2019-05-29T09:44:14Z</dc:date>
    <item>
      <title>URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92729#M2824</link>
      <description>&lt;P&gt;we are accessing  having a problem in URL we have a file named xyx (1).jpg while passing this to server we are getting response as Unauthorized Access. May I Know how to pass this request to Server?&lt;/P&gt;

&lt;P&gt;Here am using DropBox API for Winrt C#.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:44:14 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92729#M2824</guid>
      <dc:creator>sobharaj m.</dc:creator>
      <dc:date>2019-05-29T09:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92730#M2825</link>
      <description>&lt;P&gt;My guess would be that the library you're using makes request with OAuth 1 with an HMAC signature, and the signing code has a bug relating to URL encoding. Does the error happen for all files that have parentheses in it?&lt;/P&gt;

&lt;P&gt;Can you tell us what library you're using? (Ideally, give us a link to it.)&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2015 21:55:12 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92730#M2825</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-20T21:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92731#M2826</link>
      <description>&lt;P&gt;Yes Error happens for all files with that name.&lt;/P&gt;

&lt;P&gt;And this is the code we are using to retrieve the thumbnails of images.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;public async Task&amp;lt;string&amp;gt; getThumbnailUrl(string path)
{
    string url = string.Empty;
    try
    {
        WebProvider objWebProvider = new WebProvider();

        var uri = DriveUtilities.GenerateSignature(new Uri(string.Format(AppConstants.DropBox_GetMediaItem, path), UriKind.RelativeOrAbsolute),
                      "GET", DropBox_AccessToken, DropBox_AccessTokenSecret);

        uri = await objWebProvider.GETRequest(uri).ConfigureAwait(false);
        if (!string.IsNullOrEmpty(uri) &amp;amp;&amp;amp; !uri.Equals(AppConstants.Unauthorized))
        {
            DropBoxThumbnail result = JsonConvert.DeserializeObject&amp;lt;DropBoxThumbnail&amp;gt;(uri);

            if (result != null)
                url = result.url;
        }
        else
        {
            path = WebUtility.UrlEncode(path);
            var newuri = DriveUtilities.GenerateSignature(new Uri(string.Format(AppConstants.DropBox_GetMediaItem, path), UriKind.RelativeOrAbsolute),
                     "GET", DropBox_AccessToken, DropBox_AccessTokenSecret);
            newuri = await objWebProvider.GETRequest(newuri).ConfigureAwait(false);
            if (!string.IsNullOrEmpty(newuri) &amp;amp;&amp;amp; !newuri.Equals(AppConstants.Unauthorized))
            {
                DropBoxThumbnail result = JsonConvert.DeserializeObject&amp;lt;DropBoxThumbnail&amp;gt;(newuri);

                if (result != null)
                    url = result.url;
            }
            else
            {

            }
        }
    }
    catch { url = path; }
    return url;
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Mar 2015 11:50:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92731#M2826</guid>
      <dc:creator>sobharaj m.</dc:creator>
      <dc:date>2015-03-23T11:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92732#M2827</link>
      <description>&lt;P&gt;Yes we are using HMAC-SHA1 Signature.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2015 11:52:00 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92732#M2827</guid>
      <dc:creator>sobharaj m.</dc:creator>
      <dc:date>2015-03-23T11:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92733#M2828</link>
      <description>&lt;P&gt;The bug is presumably in &lt;CODE&gt;GenerateSignature&lt;/CODE&gt;, but I don't see that code. Is that something you wrote, or is it from a library you're using?&lt;/P&gt;

&lt;P&gt;If at all possible, I'd recommend switching to OAuth 2, or at least &lt;A href="https://blogs.dropbox.com/developers/2012/07/using-oauth-1-0-with-the-plaintext-signature-method/" rel="nofollow noreferrer"&gt;OAuth 1 with PLAINTEXT signatures&lt;/A&gt;. Both are simpler than using HMAC signatures, so you're less likely to have this kind of bug.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2015 11:55:38 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92733#M2828</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-23T11:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92734#M2829</link>
      <description>&lt;P&gt;Yes exactly what you are saying. Some times the login also not possible with that api. Could you please help me out.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2015 12:01:49 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92734#M2829</guid>
      <dc:creator>sobharaj m.</dc:creator>
      <dc:date>2015-03-23T12:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92735#M2830</link>
      <description>&lt;P&gt;Hi This is Code for Generating Signature.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;public static string GenerateSignature(Uri uri, string Method, string DropBox_AccessToken, string DropBox_AccessTokenSecret)
{
    var oAuth = new OAuthBase();

    var nonce = oAuth.GenerateNonce();
    var timeStamp = oAuth.GenerateTimeStamp();
    string parameters;
    string normalizedUrl;

    var signature = oAuth.GenerateSignature(uri, AppConstants.DropBoxConsumerKey, AppConstants.DropBoxConsumerSecret,
        DropBox_AccessToken, DropBox_AccessTokenSecret, Method, timeStamp, nonce,
        OAuthBase.SignatureTypes.HMACSHA1, out normalizedUrl, out parameters);

    //signature = HttpUtility.UrlEncode(signature);
    signature = WebUtility.UrlEncode(signature);

    StringBuilder requestUri = new StringBuilder(uri.ToString());
    requestUri.AppendFormat("?oauth_consumer_key={0}&amp;amp;", AppConstants.DropBoxConsumerKey);
    if (!string.IsNullOrEmpty(DropBox_AccessToken))
        requestUri.AppendFormat("oauth_token={0}&amp;amp;", DropBox_AccessToken);
    requestUri.AppendFormat("oauth_nonce={0}&amp;amp;", nonce);
    requestUri.AppendFormat("oauth_timestamp={0}&amp;amp;", timeStamp);
    requestUri.AppendFormat("oauth_signature_method={0}&amp;amp;", "HMAC-SHA1");
    requestUri.AppendFormat("oauth_version={0}&amp;amp;", "1.0");
    requestUri.AppendFormat("oauth_signature={0}", signature);

    return requestUri.ToString();
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Mar 2015 12:05:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92735#M2830</guid>
      <dc:creator>sobharaj m.</dc:creator>
      <dc:date>2015-03-23T12:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92736#M2831</link>
      <description>&lt;P&gt;We're getting closer. &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;

&lt;P&gt;It looks like the actual signature is created via &lt;CODE&gt;oAuth.GenerateSignature&lt;/CODE&gt;. Is that code you wrote or a library you're using? Could you share that code?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2015 12:09:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92736#M2831</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-23T12:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92737#M2832</link>
      <description>&lt;P&gt;Here the code is .&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;public string GenerateSignature(Uri url, string consumerKey, string consumerSecret, string token, string tokenSecret, string httpMethod, string timeStamp, string nonce, SignatureTypes signatureType, out string normalizedUrl, out string normalizedRequestParameters)
    {
        normalizedUrl = null;
        normalizedRequestParameters = null;
        string signatureBase = string.Empty;
        string secretBase = string.Empty;
        switch (signatureType)
        {
            case SignatureTypes.PLAINTEXT:
                return UrlEncode(string.Format("{0}&amp;amp;{1}", consumerSecret, tokenSecret));
            //signatureBase = GenerateSignatureBase(url, consumerKey, token, tokenSecret, httpMethod, timeStamp, nonce, HMACSHA1SignatureType, out normalizedUrl, out normalizedRequestParameters);
            case SignatureTypes.HMACSHA1:
                signatureBase = GenerateSignatureBase(url, consumerKey, token, tokenSecret, httpMethod, timeStamp, nonce, HMACSHA1SignatureType, out normalizedUrl, out normalizedRequestParameters);
                secretBase = string.Format("{0}&amp;amp;{1}", UrlEncode(consumerSecret), string.IsNullOrEmpty(tokenSecret) ? " : UrlEncode(tokenSecret));
                var crypt = MacAlgorithmProvider.OpenAlgorithm(MacAlgorithmNames.HmacSha1);
                var buffer = CryptographicBuffer.ConvertStringToBinary(signatureBase, BinaryStringEncoding.Utf8);
                var keyBuffer = CryptographicBuffer.ConvertStringToBinary(secretBase, BinaryStringEncoding.Utf8);
                var key = crypt.CreateKey(keyBuffer); var sigBuffer = CryptographicEngine.Sign(key, buffer);
                return CryptographicBuffer.EncodeToBase64String(sigBuffer);
            case SignatureTypes.RSASHA1:
                throw new NotImplementedException();
            default:
                throw new ArgumentException("Unknown signature type", "signatureType");
        }
    }
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Mar 2015 12:17:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92737#M2832</guid>
      <dc:creator>sobharaj m.</dc:creator>
      <dc:date>2015-03-23T12:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92738#M2833</link>
      <description>&lt;P&gt;I searched for little bits of that code, and I'm pretty sure that code comes from this project: &lt;A href="https://code.google.com/p/oauth/" rel="nofollow noreferrer"&gt;https://code.google.com/p/oauth/&lt;/A&gt;. Is that right? Are you using that library? Have you asked the owners of that library for help?&lt;/P&gt;

&lt;P&gt;It does look like that library supports PLAINTEXT signatures, so I still recommend switching to that so you don't need to debug this particular encoding problem.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2015 12:19:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92738#M2833</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-23T12:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92739#M2834</link>
      <description>&lt;P&gt;yes exactly we are using that one only. So you recommend me to use PlainText Signature with oAuth1. Thank you for your response if i have any problem get back to you again. &lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2015 12:27:09 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92739#M2834</guid>
      <dc:creator>sobharaj m.</dc:creator>
      <dc:date>2015-03-23T12:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92740#M2835</link>
      <description>&lt;P&gt;I edited your post to remove the signature, but you may want to get a new app key and secret now that yours has been published here.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2015 12:32:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92740#M2835</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-23T12:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92741#M2836</link>
      <description>&lt;P&gt;The signature that you originally posted looks broken... it should have an ampersand (&amp;amp;) at the end of it. (When URL-encoded, and ampersand ends up being a %26.) See &lt;A href="https://blogs.dropbox.com/developers/2012/07/using-oauth-1-0-with-the-plaintext-signature-method/" rel="nofollow noreferrer"&gt;https://blogs.dropbox.com/developers/2012/07/using-oauth-1-0-with-the-plaintext-signature-method/&lt;/A&gt; for an example.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2015 12:37:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92741#M2836</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-23T12:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92742#M2837</link>
      <description>&lt;P&gt;Hi I used PLAINTEXT but now it is not showing even single image thumbnail.  but when i clicked on it it showing full image .&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2015 13:15:48 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92742#M2837</guid>
      <dc:creator>sobharaj m.</dc:creator>
      <dc:date>2015-03-23T13:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92743#M2838</link>
      <description>&lt;P&gt;If I understand you correctly, you're no longer getting an "unauthorized access" error at all. Is that right?&lt;/P&gt;

&lt;P&gt;If so, please explain the new issue you're seeing. Include the relevant code, what you expected to happen, and what actually happened.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 02:37:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92743#M2838</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-24T02:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92744#M2839</link>
      <description>&lt;P&gt;No but now am getting Unauthorized Exception in case of showing thumbnails we are using this url( &lt;A href="https://api-content.dropbox.com/1/thumbnails/auto" rel="nofollow noreferrer"&gt;https://api-content.dropbox.com/1/thumbnails/auto&lt;/A&gt; ) It is always giving us above mentioned exception. How to get Thumbnails of Images from dropbox. &lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 11:32:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92744#M2839</guid>
      <dc:creator>sobharaj m.</dc:creator>
      <dc:date>2015-03-24T11:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92745#M2840</link>
      <description>&lt;P&gt;So you're still getting an "unauthorized error" message? Is this on all paths or still just the ones that include parentheses? Are you still using HMAC signing, or have you switched to PLAINTEXT?&lt;/P&gt;

&lt;P&gt;Is it only &lt;CODE&gt;/thumbnails&lt;/CODE&gt; that fails, or do other endpoints also fail?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 11:56:26 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92745#M2840</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-24T11:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92746#M2841</link>
      <description>&lt;P&gt;Am using PLAINTEXT only. Yes it fails only for Thumbnails.  &lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 12:11:59 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92746#M2841</guid>
      <dc:creator>sobharaj m.</dc:creator>
      <dc:date>2015-03-24T12:11:59Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92747#M2842</link>
      <description>&lt;P&gt;It is on all paths but only for Thumbnails.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 12:15:21 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92747#M2842</guid>
      <dc:creator>sobharaj m.</dc:creator>
      <dc:date>2015-03-24T12:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: URL Unauthorized access error while accessing files from dropbox?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92748#M2843</link>
      <description>&lt;P&gt;Please share code for a call that works (something other than /thumbnails) and a call that doesn't work (/thumbnails).&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 12:18:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/URL-Unauthorized-access-error-while-accessing-files-from-dropbox/m-p/92748#M2843</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-24T12:18:17Z</dc:date>
    </item>
  </channel>
</rss>

