<?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: Dropbox Sync API access token in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61817#M1930</link>
    <description>&lt;P&gt;I'm not familiar with the term "access key," but if you're asking about an "access token," that's a term associated with OAuth 2, while the URL you have is dealing with OAuth 1. In OAuth 1, you get an token (&lt;CODE&gt;oauth_token&lt;/CODE&gt;) and a token secret (&lt;CODE&gt;oauth_token_secret&lt;/CODE&gt;). If you need to convert that to an OAuth 2 access token, you can use the &lt;A href="https://www.dropbox.com/developers/core/docs#oa2-from-oa1" rel="nofollow noreferrer"&gt;&lt;CODE&gt;/token_from_oauth1&lt;/CODE&gt;&lt;/A&gt; endpoint.&lt;/P&gt;

&lt;P&gt;That said, I'm pretty sure the version of DropNet you're using only supports OAuth 1, so you should probably stick with the token and token secret that you have. (Your code looks good to me up until the call to &lt;CODE&gt;GetAccessToken&lt;/CODE&gt;.)&lt;/P&gt;</description>
    <pubDate>Fri, 22 May 2015 22:35:58 GMT</pubDate>
    <dc:creator>Steve M.</dc:creator>
    <dc:date>2015-05-22T22:35:58Z</dc:date>
    <item>
      <title>Dropbox Sync API access token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61811#M1924</link>
      <description>&lt;P&gt;How to get access token from the &lt;CODE&gt;DBAccountManager.SharedManager.HandleOpenURL("url")&lt;/CODE&gt; using dropnet ? or any other alternative way to get the access token&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:42:38 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61811#M1924</guid>
      <dc:creator>vignesh p.</dc:creator>
      <dc:date>2019-05-29T09:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox Sync API access token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61812#M1925</link>
      <description>&lt;P&gt;When you say "dropnet," are you referring to the .NET library (&lt;A href="https://github.com/DropNet/DropNet" rel="nofollow noreferrer"&gt;https://github.com/DropNet/DropNet&lt;/A&gt;)?&lt;/P&gt;

&lt;P&gt;If you're migrating from the Sync API, take a look at &lt;A href="https://blogs.dropbox.com/developers/2015/05/migrating-sync-sdk-access-tokens-to-core-sdk/" rel="nofollow noreferrer"&gt;https://blogs.dropbox.com/developers/2015/05/migrating-sync-sdk-access-tokens-to-core-sdk/&lt;/A&gt; for details about how to extract the existing access token.&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2015 23:55:50 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61812#M1925</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-05-20T23:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox Sync API access token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61813#M1926</link>
      <description>&lt;P&gt;Yes I'm referring to this (&lt;A href="https://github.com/DropNet/DropNet" rel="nofollow noreferrer"&gt;https://github.com/DropNet/DropNet&lt;/A&gt;) only ,I use the following code but I'm getting an weird exception "Object reference not set to an instance of an object" &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;string apikey = dropvalues.DropboxApiKey;
string apisecretkey = dropvalues.DropboxApiSecretKey;
string usertoken = dropvalues.DropBoxUserToken;
string usersecrettoken = dropvalues.DropBoxUserSecretKey;
DropNetClient client = new DropNetClient(apikey, apisecretkey, usertoken, usersecrettoken);
// client.GetTokenAndBuildUrl(uri);
var accesskey = client.GetAccessToken();
Debug.WriteLine("Access key is " + accesskey);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 May 2015 18:54:01 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61813#M1926</guid>
      <dc:creator>vignesh p.</dc:creator>
      <dc:date>2015-05-21T18:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox Sync API access token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61814#M1927</link>
      <description>&lt;P&gt;&lt;EM&gt;What&lt;/EM&gt; object reference is not set to an instance of an object?&lt;/P&gt;

&lt;P&gt;Also, cross-referencing your post on Stack Overflow: &lt;A href="http://stackoverflow.com/questions/30366944/how-to-get-access-token-from-dropbox-sync-datastore-xamarin-component" rel="nofollow noreferrer"&gt;http://stackoverflow.com/questions/30366944/how-to-get-access-token-from-dropbox-sync-datastore-xamarin-component&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2015 22:34:38 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61814#M1927</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-05-21T22:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox Sync API access token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61815#M1928</link>
      <description>&lt;P&gt;I have resolved the object reference exception now i got this one&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;DropBoxIntegration[3831:508119] Stack Trace at DropNet.DropNetClient.Execute (ApiType apiType, IRestRequest request) [0x0002c]
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 May 2015 15:18:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61815#M1928</guid>
      <dc:creator>vignesh p.</dc:creator>
      <dc:date>2015-05-22T15:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox Sync API access token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61816#M1929</link>
      <description>&lt;P&gt;In the following URL which is the access key&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; {db-XXXXXXX://1/connect?oauth_token_secret=XXXXXXXX&amp;amp;state=XXXXXXXXXXXXX&amp;amp;uid=XXXXXXX&amp;amp;oauth_token=XXXXXXXXXXX} 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;?&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2015 16:22:58 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61816#M1929</guid>
      <dc:creator>vignesh p.</dc:creator>
      <dc:date>2015-05-22T16:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox Sync API access token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61817#M1930</link>
      <description>&lt;P&gt;I'm not familiar with the term "access key," but if you're asking about an "access token," that's a term associated with OAuth 2, while the URL you have is dealing with OAuth 1. In OAuth 1, you get an token (&lt;CODE&gt;oauth_token&lt;/CODE&gt;) and a token secret (&lt;CODE&gt;oauth_token_secret&lt;/CODE&gt;). If you need to convert that to an OAuth 2 access token, you can use the &lt;A href="https://www.dropbox.com/developers/core/docs#oa2-from-oa1" rel="nofollow noreferrer"&gt;&lt;CODE&gt;/token_from_oauth1&lt;/CODE&gt;&lt;/A&gt; endpoint.&lt;/P&gt;

&lt;P&gt;That said, I'm pretty sure the version of DropNet you're using only supports OAuth 1, so you should probably stick with the token and token secret that you have. (Your code looks good to me up until the call to &lt;CODE&gt;GetAccessToken&lt;/CODE&gt;.)&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2015 22:35:58 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-Sync-API-access-token/m-p/61817#M1930</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-05-22T22:35:58Z</dc:date>
    </item>
  </channel>
</rss>

