<?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: How do I upload a file to my dropbox apps folder in dropbox  in objective c? in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83807#M2516</link>
    <description>&lt;P&gt;Moved to the API forum.&lt;/P&gt;</description>
    <pubDate>Tue, 21 Jul 2015 19:36:15 GMT</pubDate>
    <dc:creator>Rich</dc:creator>
    <dc:date>2015-07-21T19:36:15Z</dc:date>
    <item>
      <title>How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83806#M2515</link>
      <description>&lt;P&gt;Currently nothing happens when I run my code.&lt;/P&gt;

&lt;P&gt;This is how I am setting the up client. I did not put the client set up in my &lt;CODE&gt;viewDidLoad&lt;/CODE&gt; method because this class will never be shown it just handles server side actions.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(instancetype)initWithClient  
{

&amp;nbsp;&amp;nbsp;self&amp;nbsp;=&amp;nbsp;[super&amp;nbsp;init];

&amp;nbsp;&amp;nbsp;if&amp;nbsp;(self)&amp;nbsp;{

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;self.restClient&amp;nbsp;=&amp;nbsp;[[DBRestClient&amp;nbsp;alloc]&amp;nbsp;initWithSession:[DBSession&amp;nbsp;sharedSession]];

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;self.restClient.delegate&amp;nbsp;=&amp;nbsp;self;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;return&amp;nbsp;self;  
}  



&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This is how I make the API call to upload&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(void)uploadToDropBox:(UIImage&amp;nbsp;*)img  
{

&amp;nbsp;&amp;nbsp;NSLog(@"Entered&amp;nbsp;the&amp;nbsp;DB&amp;nbsp;upload&amp;nbsp;method");


&amp;nbsp;&amp;nbsp;NSArray&amp;nbsp;*directories&amp;nbsp;=&amp;nbsp;NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,  
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;NSUserDomainMask,  
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;YES);


&amp;nbsp;&amp;nbsp;NSString&amp;nbsp;*documentDirectory&amp;nbsp;=&amp;nbsp;[directories&amp;nbsp;firstObject];

&amp;nbsp;&amp;nbsp;NSString&amp;nbsp;*imagePath&amp;nbsp;=&amp;nbsp;[documentDirectory&amp;nbsp;stringByAppendingPathComponent:@"cardImage"];

&amp;nbsp;&amp;nbsp;NSString&amp;nbsp;*destDir&amp;nbsp;=&amp;nbsp;@"Apps/BirthdayScrapbook";

&amp;nbsp;&amp;nbsp;NSLog(@"Just&amp;nbsp;about&amp;nbsp;to&amp;nbsp;execute&amp;nbsp;the&amp;nbsp;upload&amp;nbsp;method");

&amp;nbsp;&amp;nbsp;NSData&amp;nbsp;*imageData&amp;nbsp;=&amp;nbsp;UIImagePNGRepresentation(img);

&amp;nbsp;&amp;nbsp;[imageData&amp;nbsp;writeToFile:imagePath&amp;nbsp;atomically:&amp;nbsp;YES];

&amp;nbsp;&amp;nbsp;[self.restClient&amp;nbsp;uploadFile:@"cardImage"&amp;nbsp;toPath:destDir&amp;nbsp;withParentRev:nil&amp;nbsp;fromPath:imagePath];

&amp;nbsp;&amp;nbsp;NSLog(@"Executed&amp;nbsp;the&amp;nbsp;DB&amp;nbsp;&amp;nbsp;upload&amp;nbsp;method");

&amp;nbsp;&amp;nbsp;[self&amp;nbsp;sendBDayCard];  
}  



&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I think I am going about it wrong. I know what my access token is, but I don't know what to do with it nor where to put it. There is a client init method that takes in the &lt;CODE&gt;userID&lt;/CODE&gt;, but I don't know where to find my accounts &lt;CODE&gt;userID&lt;/CODE&gt;. Can someone give some direction with this?&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:41:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83806#M2515</guid>
      <dc:creator>Chez B.</dc:creator>
      <dc:date>2019-05-29T09:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83807#M2516</link>
      <description>&lt;P&gt;Moved to the API forum.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2015 19:36:15 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83807#M2516</guid>
      <dc:creator>Rich</dc:creator>
      <dc:date>2015-07-21T19:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83808#M2517</link>
      <description>&lt;P&gt;There are a few things to note here:&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;1) Did you implement the callback methods?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;
- (void)restClient:(DBRestClient*)client uploadedFile:(NSString*)destPath from:(NSString*)srcPath metadata:(DBMetadata*)metadata;  
- (void)restClient:(DBRestClient*)client uploadFileFailedWithError:(NSError*)error;



&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;That's how you&amp;nbsp;receive the requested information back.&lt;/P&gt;

&lt;P&gt;2) You don't need to explicitly specify your app folder as "Apps/BirthdayScrapbook". App folder apps are implicitly rooted in their app folder, so you can just use "/".&lt;/P&gt;

&lt;P&gt;3) Normally with the iOS or OS X Core SDK, you don't need to supply the access token manually. It's programmatically retrieved using the built-in app authorization flow, as shown in the tutorial:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://www.dropbox.com/developers/core/start/ios" rel="nofollow noreferrer"&gt;https://www.dropbox.com/developers/core/start/ios&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;If you do have an access token you want to set manually though you can use this method on &lt;CODE&gt;DBSession&lt;/CODE&gt; :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;
- (void)updateAccessToken:(NSString *)token accessTokenSecret:(NSString *)secret forUserId:(NSString *)userId;



&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The &lt;CODE&gt;userId&lt;/CODE&gt; is the integer user ID for your account, e.g., as seen in &lt;CODE&gt;DBSession.userIds&lt;/CODE&gt; , or as returned by the &lt;A href="https://www.dropbox.com/developers/core/docs#account-info" rel="nofollow noreferrer"&gt;/account/info&lt;/A&gt; endpoint, which is &lt;CODE&gt;loadAccountInfo&lt;/CODE&gt; ( &lt;CODE&gt;loadedAccountInfo&lt;/CODE&gt; and &lt;CODE&gt;loadAccountInfoFailedWithError&lt;/CODE&gt; callbacks) in the Core SDK.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 00:48:59 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83808#M2517</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-07-22T00:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83809#M2518</link>
      <description>&lt;P&gt;I have the call back methods implemented in the same class like so.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(void)restClient:(DBRestClient&amp;nbsp;*)client&amp;nbsp;uploadedFile:(NSString&amp;nbsp;*)destPath&amp;nbsp;from:(NSString&amp;nbsp;*)srcPath&amp;nbsp;metadata:(DBMetadata&amp;nbsp;*)metadata&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;NSLog(@"File&amp;nbsp;uploaded&amp;nbsp;successfully&amp;nbsp;to&amp;nbsp;path:&amp;nbsp;%@",&amp;nbsp;metadata.path);
}

&amp;nbsp;(void)restClient:(DBRestClient&amp;nbsp;*)client&amp;nbsp;uploadFileFailedWithError:(NSError&amp;nbsp;*)error&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;NSLog(@"File&amp;nbsp;upload&amp;nbsp;failed&amp;nbsp;with&amp;nbsp;error:&amp;nbsp;%@",&amp;nbsp;error);  
}  


&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Though I have not called them anywhere in the program. I suppose that may not be necessary.&lt;/P&gt;

&lt;P&gt;I tried to add the &lt;CODE&gt;updateAcessToken&lt;/CODE&gt; method inside my &lt;CODE&gt;didFinishLaunching&lt;/CODE&gt; method like this. I have my actual app key and app secret in my actual code. I just omitted them for security.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;DBSession&amp;nbsp;*dbSession&amp;nbsp;=&amp;nbsp;[[DBSession&amp;nbsp;alloc]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;initWithAppKey:@"db-myAppKey"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;appSecret:@"myAppSecret"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;root:kDBRootAppFolder];&amp;nbsp;//&amp;nbsp;either&amp;nbsp;kDBRootAppFolder&amp;nbsp;or&amp;nbsp;kDBRootDropbox

&amp;nbsp;[dbSession&amp;nbsp;updateAccessToken:@"myAccessToken"&amp;nbsp;accessTokenSecret:@"MyAppsAppSecret"&amp;nbsp;forUserId:[[DBAccountInfo&amp;nbsp;alloc]&amp;nbsp;init].userId];

[DBSession&amp;nbsp;setSharedSession:dbSession];  


&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Xcode gives me the error:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
&lt;P&gt;setObjectForKey: key cannot be nil&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&lt;CODE&gt;userID&lt;/CODE&gt; is nil which makes sense. How do I obtain the user ID that is associated with the account that my app was created on without having to bring up a formal dropbox login view when I run the app? I want to be logged into the account that my app was created on, and obtain the &lt;CODE&gt;userID&lt;/CODE&gt; all in the back end. I don't want the user of the app to have any knowledge that this is going on.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 03:32:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83809#M2518</guid>
      <dc:creator>Chez B.</dc:creator>
      <dc:date>2015-07-22T03:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83810#M2519</link>
      <description>&lt;P&gt;Thanks. That's correct, you don't have to call the callback methods yourself, they get called by the SDK.&lt;/P&gt;

&lt;P&gt;Also, note that the app key passed to &lt;CODE&gt;initWithAppKey&lt;/CODE&gt; should be just the app key, without the "db-" prefix. The "db-" prefix is only necessary for the URL scheme you register in the plist.&lt;/P&gt;

&lt;P&gt;Finally, yes, as you mentioned this error is expected as&amp;nbsp;you're just initializing an empty &lt;CODE&gt;DBAccount&lt;/CODE&gt; object, so the &lt;CODE&gt;userId&lt;/CODE&gt; isn't set.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Normally, you don't need to know the user ID to start with, as the user authorizes the account, and doesn't supply an access token themselves. It is possible to use API/SDK like this with a single account, but it isn't recommended, for a variety of security and technical reasons.&lt;/P&gt;

&lt;P&gt;If you do go this route though, you'll need to get the user ID for your account once, just like you got an access token for your account once. You can do this by calling the &lt;A href="https://www.dropbox.com/developers/core/docs#account-info" rel="nofollow noreferrer"&gt;/account/info endpoint&lt;/A&gt; manually once. &lt;A href="https://www.dropbox.com/developers/blog/20/using-oauth-in-plaintext-mode" rel="nofollow noreferrer"&gt;This blog post&lt;/A&gt; covers how to make these calls with OAuth 1 manually if you need.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 03:51:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83810#M2519</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-07-22T03:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83811#M2520</link>
      <description>&lt;P&gt;I am only using the API/SDK with one user account because I am working on app that is not going to be published. I am interning a Facebook and I am in a program where the focus is to teach us mobile development. This app is a learning experience. I just need an easy way to store videos that can be accessed by whoever we email the dropbox link to.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Since I am working in objective c how do I call the method /account/info endpoint?&lt;/P&gt;

&lt;P&gt;Is there a method in the iOS SDK that makes calling those types of methods possible?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 04:30:34 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83811#M2520</guid>
      <dc:creator>Chez B.</dc:creator>
      <dc:date>2015-07-22T04:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83812#M2521</link>
      <description>&lt;P&gt;Yes, the &lt;CODE&gt;loadAccountInfo&lt;/CODE&gt; method makes that API call, but you need to be linked to do that first anyway.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;To get your user ID once, you can make the call once, e.g.:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;curl "https://api.dropbox.com/1/account/info?oauth_version=1.0&amp;amp;oauth_signature_method=PLAINTEXT&amp;amp;oauth_nonce=NONCE_HERE&amp;amp;oauth_consumer_key=APP_KEY_HERE&amp;amp;oauth_token=ACCESS_TOKEN_KEY_HERE&amp;amp;oauth_timestamp=CURRENT_TIMESTAMP_HERE&amp;amp;oauth_signature=APP_SECRET_HERE%26ACCESS_TOKEN_SECRET_HERE"

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Jul 2015 04:52:00 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83812#M2521</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-07-22T04:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83813#M2522</link>
      <description>&lt;P&gt;I ran this though my terminal while in the directory of where my app is located&lt;/P&gt;

&lt;P&gt;curl "&lt;A href="https://api.dropbox.com/1/account/info?oauth%5C_version=1.0&amp;amp;oauth%5C_signature%5C_method=PLAINTEXT&amp;amp;oauth%5C_nonce=NONCE%5C_HERE&amp;amp;oauth%5C_consumer%5C_key=myAppKey%5C_HERE&amp;amp;oauth%5C_token=ACCESS%5C_myAppsToken%5C_myAppsKey&amp;amp;oauth%5C_timestamp=CURRENT%5C_TIMESTAMP%5C_HERE&amp;amp;oauth%5C_signature=myAppsSecret%5C_HERE%26ACCESS%5C_TOKEN%5CmyAppSecret" rel="nofollow noreferrer"&gt;https://api.dropbox.com/1/account/info?oauth\_version=1.0&amp;amp;oauth\_signature\_method=PLAINTEXT&amp;amp;oauth\_nonce=NONCE\_HERE&amp;amp;oauth\_consumer\_key=myAppKey\_HERE&amp;amp;oauth\_token=ACCESS\_myAppsToken\_myAppsKey&amp;amp;oauth\_timestamp=CURRENT\_TIMESTAMP\_HERE&amp;amp;oauth\_signature=myAppsSecret\_HERE%26ACCESS\_TOKEN\myAppSecret&lt;/A&gt;"&lt;/P&gt;

&lt;P&gt;and this happened&lt;/P&gt;

&lt;P&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;html&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;Dropbox - 4xx&amp;lt;/title&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;link href="//&lt;A href="http://www.dropbox.com/static/css/error.css" rel="nofollow noreferrer"&gt;www.dropbox.com/static/css/error.css&lt;/A&gt;" rel="stylesheet" type="text/css"/&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;link rel="shortcut icon" href="//&lt;A href="http://www.dropbox.com/static/images/favicon.ico%22/" rel="nofollow noreferrer"&gt;www.dropbox.com/static/images/favicon.ico"/&lt;/A&gt;&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;/head&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;body&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;div class="figure"&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;img src="//&lt;A href="http://www.dropbox.com/static/images/psychobox.png" rel="nofollow noreferrer"&gt;www.dropbox.com/static/images/psychobox.png&lt;/A&gt;" alt="Error: 4xx"/&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;/div&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;div id="errorbox"&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;h1&amp;gt;Error (4xx)&amp;lt;/h1&amp;gt;We can't find the page you're looking for. Check out our &amp;lt;a href="&lt;A href="https://www.dropbox.com/help%22&amp;gt;Help" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help"&amp;gt;Help&lt;/A&gt; Center&amp;lt;/a&amp;gt; and &amp;lt;a href="&lt;A href="https://forums.dropbox.com%22&amp;gt;forums&amp;lt;/a" rel="nofollow noreferrer"&gt;https://forums.dropbox.com"&amp;gt;forums&amp;lt;/a&lt;/A&gt;&amp;gt; for help, or head back to &amp;lt;a href="&lt;A href="https://www.dropbox.com/home%22&amp;gt;home&amp;lt;/a" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home"&amp;gt;home&amp;lt;/a&lt;/A&gt;&amp;gt;.&lt;/P&gt;

&lt;P&gt;&amp;lt;/div&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;lt;script type="text/javascript" src="//&lt;A href="http://www.dropbox.com/static/javascript/external/prototype.js%22&amp;gt;&amp;lt;/script" rel="nofollow noreferrer"&gt;www.dropbox.com/static/javascript/external/prototype.js"&amp;gt;&amp;lt;/script&lt;/A&gt;&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;script&amp;gt;&lt;/P&gt;

&lt;P&gt;message = {"ru": "\u003ch1\u003e\u041e\u0448\u0438\u0431\u043a\u0430 (4xx)\u003c/h1\u003e\u0417\u0430\u043f\u0440\u043e\u0448\u0435\u043d\u043d\u0430\u044f \u0432\u0430\u043c\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430. \u041f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u0432 \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003e%5Cu0441%5Cu043f%5Cu0440%5Cu0430%5Cu0432%5Cu043e%5Cu0447%5Cu043d%5Cu044b%5Cu0439" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003e\u0441\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u044b\u0439&lt;/A&gt; \u0446\u0435\u043d\u0442\u0440\u003c/a\u003e \u0438\u043b\u0438 \u043d\u0430 \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003e%5Cu0444%5Cu043e%5Cu0440%5Cu0443%5Cu043c%5Cu044b%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003e\u0444\u043e\u0440\u0443\u043c\u044b\u003c/a\u003e&lt;/A&gt; \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u043c\u043e\u0449\u0438 \u0438\u043b\u0438 \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u043d\u0430 \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003e%5Cu0434%5Cu043e%5Cu043c%5Cu0430%5Cu0448%5Cu043d%5Cu044e%5Cu044e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003e\u0434\u043e\u043c\u0430\u0448\u043d\u044e\u044e&lt;/A&gt; \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443\u003c/a\u003e.", "fr": "\u003ch1\u003eErreur (4xx)\u003c/h1\u003eLa page que vous recherchez est introuvable. Consultez notre \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003ecentre" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003ecentre&lt;/A&gt; d'assistance\u003c/a\u003e et nos \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003eforums%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003eforums\u003c/a\u003e&lt;/A&gt; pour obtenir de l'aide, ou retournez sur la page \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003eAccueil%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003eAccueil\u003c/a\u003e&lt;/A&gt;.", "nb_NO": "\u003ch1\u003eFeil (4xx)\u003c/h1\u003eVi finner ikke siden du leter etter. Sjekk ut v\u00e5rt \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003ehjelpesenter%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003ehjelpesenter\u003c/a\u003e&lt;/A&gt; og \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003efora%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003efora\u003c/a\u003e&lt;/A&gt; for hjelp, eller g\u00e5 tilbake til \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003ehjemmesiden%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003ehjemmesiden\u003c/a\u003e&lt;/A&gt;.", "zh_TW": "\u003ch1\u003e\u932f\u8aa4 (4xx)\u003c/h1\u003e\u7121\u6cd5\u627e\u5230\u60a8\u60f3\u627e\u7684\u7db2\u9801\u3002\u8acb\u5230\u6211\u5011\u7684\u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003e%5Cu8aaa%5Cu660e%5Cu4e2d%5Cu5fc3%5Cu003c/a%5Cu003e%5Cu548c%5Cu003ca" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003e\u8aaa\u660e\u4e2d\u5fc3\u003c/a\u003e\u548c\u003ca&lt;/A&gt; href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003e%5Cu8a0e%5Cu8ad6%5Cu5340%5Cu003c/a%5Cu003e%5Cu5c0b%5Cu6c42%5Cu5354%5Cu52a9%5Cuff0c%5Cu6216%5Cu662f%5Cu56de%5Cu5230%5Cu003ca" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003e\u8a0e\u8ad6\u5340\u003c/a\u003e\u5c0b\u6c42\u5354\u52a9\uff0c\u6216\u662f\u56de\u5230\u003ca&lt;/A&gt; href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003e%5Cu9996%5Cu9801%5Cu003c/a%5Cu003e%5Cu3002" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003e\u9996\u9801\u003c/a\u003e\u3002&lt;/A&gt;", "pt_BR": "\u003ch1\u003eErro (4xx) \u003c/h1\u003eN\u00e3o foi poss\u00edvel encontrar a p\u00e1gina que est\u00e1 procurando. Acesse a nossa \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003eCentral" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003eCentral&lt;/A&gt; de ajuda\u003c/a\u003e e \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003enossos" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003enossos&lt;/A&gt; f\u00f3runs\u003c/a\u003e para obter ajuda ou volte para&amp;nbsp; \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003ea" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003ea&lt;/A&gt; p\u00e1gina inicial\u003c/a\u003e.", "zh_CN": "\u003ch1\u003e\u9519\u8bef (4xx)\u003c/h1\u003e\u627e\u4e0d\u5230\u60a8\u641c\u7d22\u7684\u9875\u9762\u3002\u8bf7\u67e5\u9605\u6211\u4eec\u7684\u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003e%5Cu5e2e%5Cu52a9%5Cu4e2d%5Cu5fc3%5Cu003c/a%5Cu003e%5Cu548c%5Cu003ca" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003e\u5e2e\u52a9\u4e2d\u5fc3\u003c/a\u003e\u548c\u003ca&lt;/A&gt; href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003e%5Cu8bba%5Cu575b%5Cu003c/a%5Cu003e%5Cu83b7%5Cu53d6%5Cu5e2e%5Cu52a9%5Cuff0c%5Cu6216%5Cu8fd4%5Cu56de%5Cu003ca" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003e\u8bba\u575b\u003c/a\u003e\u83b7\u53d6\u5e2e\u52a9\uff0c\u6216\u8fd4\u56de\u003ca&lt;/A&gt; href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003e%5Cu4e3b%5Cu9875%5Cu003c/a%5Cu003e%5Cu3002" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003e\u4e3b\u9875\u003c/a\u003e\u3002&lt;/A&gt;", "da_DK": "\u003ch1\u003eFejl (4xx)\u003c/h1\u003e Vi kan ikke finde den side, du leder efter. Tjek vores \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003eHj%5Cu00e6lpecenter%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003eHj\u00e6lpecenter\u003c/a\u003e&lt;/A&gt; og \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003eforummer%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003eforummer\u003c/a\u003e&lt;/A&gt; for hj\u00e6lp, eller g\u00e5 tilbage til \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003estartsiden%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003estartsiden\u003c/a\u003e&lt;/A&gt;.", "de": "\u003ch1\u003eFehler (4xx)\u003c/h1\u003eWir finden die Seite nicht, nach der Sie suchen. Schauen Sie sich im \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003eHilfecenter%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003eHilfecenter\u003c/a\u003e&lt;/A&gt; und in den \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003eForen%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003eForen\u003c/a\u003e&lt;/A&gt; um, wenn Sie Hilfe ben\u00f6tigen, oder kehren Sie zur\u00fcck auf die \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003eStartseite%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003eStartseite\u003c/a\u003e&lt;/A&gt;.", "ko": "\u003ch1\u003e\uc624\ub958(4xx)\u003c/h1\u003e\ucc3e\uc73c\ub824\ub294 \ud398\uc774\uc9c0\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ub3c4\uc6c0\uc774 \ud544\uc694\ud55c \uacbd\uc6b0 Dropbox\uc758 \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003e%5Cub3c4%5Cuc6c0%5Cub9d0" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003e\ub3c4\uc6c0\ub9d0&lt;/A&gt; \uc13c\ud130\u003c/a\u003e \ubc0f \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003e%5Cud3ec%5Cub7fc%5Cu003c/a%5Cu003e%5Cuc744" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003e\ud3ec\ub7fc\u003c/a\u003e\uc744&lt;/A&gt; \ucc38\uc870\ud558\uac70\ub098 \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003e%5Cud648%5Cu003c/a%5Cu003e%5Cuc73c%5Cub85c" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003e\ud648\u003c/a\u003e\uc73c\ub85c&lt;/A&gt; \ub3cc\uc544\uac00\uc138\uc694.", "it": "\u003ch1\u003eErrore (4xx)\u003c/h1\u003eNon riusciamo a trovare la pagina che stai cercando. Consulta il \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003eCentro" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003eCentro&lt;/A&gt; assistenza\u003c/a\u003e e i \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003eforum%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003eforum\u003c/a\u003e&lt;/A&gt; per assistenza oppure torna alla \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003ehomepage%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003ehomepage\u003c/a\u003e&lt;/A&gt;.", "sv_SE": "\u003ch1\u003eFel (4xx)\u003c/h1\u003eVi kan inte hitta den sida du letar efter. Kolla in v\u00e5rt \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003eHj%5Cu00e4lpcenter%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003eHj\u00e4lpcenter\u003c/a\u003e&lt;/A&gt; och \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003ev%5Cu00e5ra" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003ev\u00e5ra&lt;/A&gt; forum\u003c/a\u003e f\u00f6r att f\u00e5 hj\u00e4lp eller g\u00e5 tillbaka till \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003estartsidan.%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003estartsidan.\u003c/a\u003e&lt;/A&gt;", "uk_UA": "\u003ch1\u003e\u041f\u043e\u043c\u0438\u043b\u043a\u0430 (4xx)\u003c/h1\u003e\u041c\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u043c\u043e \u0437\u043d\u0430\u0439\u0442\u0438 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0443, \u044f\u043a\u0443 \u0432\u0438 \u0448\u0443\u043a\u0430\u0454\u0442\u0435. \u041f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u044c\u0442\u0435 \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003e%5Cu0426%5Cu0435%5Cu043d%5Cu0442%5Cu0440" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003e\u0426\u0435\u043d\u0442\u0440&lt;/A&gt; \u0434\u043e\u0432\u0456\u0434\u043a\u0438\u003c/a\u003e \u0442\u0430 \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003e%5Cu0444%5Cu043e%5Cu0440%5Cu0443%5Cu043c%5Cu0438%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003e\u0444\u043e\u0440\u0443\u043c\u0438\u003c/a\u003e&lt;/A&gt; \u0430\u0431\u043e \u043f\u043e\u0432\u0435\u0440\u043d\u0456\u0442\u044c\u0441\u044f \u043d\u0430 \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003e%5Cu0433%5Cu043e%5Cu043b%5Cu043e%5Cu0432%5Cu043d%5Cu0443" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003e\u0433\u043e\u043b\u043e\u0432\u043d\u0443&lt;/A&gt; \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0443\u003c/a\u003e.", "nl_NL": "\u003ch1\u003eFout (4xx)\u003c/h1\u003eHet is niet gelukt om de pagina te vinden waarnaar je op zoek bent. Kijk in ons \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003ehelpcentrum%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003ehelpcentrum\u003c/a\u003e&lt;/A&gt; en de \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003eforums%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003eforums\u003c/a\u003e&lt;/A&gt; voor hulp of ga terug naar de \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003ebeginpagina%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003ebeginpagina\u003c/a\u003e&lt;/A&gt;.", "es": "\u003ch1\u003eError (4xx)\u003c/h1\u003eNo podemos encontrar la p\u00e1gina que buscas. Visita nuestro \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003ecentro" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003ecentro&lt;/A&gt; de ayuda\u003c/a\u003e y \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003eforos%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003eforos\u003c/a\u003e&lt;/A&gt; para obtener asistencia, o dir\u00edgete nuevamente al \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003einicio%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003einicio\u003c/a\u003e&lt;/A&gt;.", "ms": "\u003ch1\u003eRalat (4xx)\u003c/h1\u003eKami tidak dapat menemui halaman yang anda sedang cari. Lihat \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003ePusat" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003ePusat&lt;/A&gt; Bantuan\u003c/a\u003e dan \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003eforum%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003eforum\u003c/a\u003e&lt;/A&gt; kami untuk bantuan, atau kembali ke \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003erumah%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003erumah\u003c/a\u003e&lt;/A&gt;.", "id": "\u003ch1\u003eKesalahan (4xx)\u003c/h1\u003eKami tidak bisa menemukan halaman yang Anda cari. Kunjungi \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003ePusat" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003ePusat&lt;/A&gt; Bantuan\u003c/a\u003e dan \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003eforum%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003eforum\u003c/a\u003e&lt;/A&gt; kami untuk mendapatkan bantuan, atau kembalilah ke \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003ehalaman" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003ehalaman&lt;/A&gt; awal\u003c/a\u003e.", "th_TH": "\u003ch1\u003e\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14 (4xx)\u003c/h1\u003e\u0e40\u0e23\u0e32\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e2b\u0e19\u0e49\u0e32\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e01\u0e33\u0e25\u0e31\u0e07\u0e21\u0e2d\u0e07\u0e2b\u0e32 \u0e42\u0e1b\u0e23\u0e14\u0e14\u0e39\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e17\u0e35\u0e48 \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003e%5Cu0e28%5Cu0e39%5Cu0e19%5Cu0e22%5Cu0e4c%5Cu0e04%5Cu0e27%5Cu0e32%5Cu0e21%5Cu0e0a%5Cu0e48%5Cu0e27%5Cu0e22%5Cu0e40%5Cu0e2b%5Cu0e25%5Cu0e37%5Cu0e2d%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003e\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e04\u0e27\u0e32\u0e21\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d\u003c/a\u003e&lt;/A&gt; \u0e41\u0e25\u0e30 \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003e%5Cu0e1f%5Cu0e2d%5Cu0e23%5Cu0e31%5Cu0e21%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003e\u0e1f\u0e2d\u0e23\u0e31\u0e21\u003c/a\u003e&lt;/A&gt; \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d \u0e2b\u0e23\u0e37\u0e2d\u0e01\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e17\u0e35\u0e48 \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003e%5Cu0e2b%5Cu0e19%5Cu0e49%5Cu0e32%5Cu0e41%5Cu0e23%5Cu0e01%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003e\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01\u003c/a\u003e&lt;/A&gt;", "es_ES": "\u003ch1\u003eError (4xx)\u200b \u003c/h1\u003eNo encontramos la p\u00e1gina que est\u00e1s buscando. Consulta nuestro \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003eCentro" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003eCentro&lt;/A&gt; de ayuda\u003c/a\u003e&amp;nbsp; y los \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003eforos%5Cu003c/a%5Cu003e%C2%A0" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003eforos\u003c/a\u003e&amp;nbsp;&lt;/A&gt; para obtener asistencia o vuelve a la \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003ep%5Cu00e1gina" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003ep\u00e1gina&lt;/A&gt; principal\u003c/a\u003e.", "ja": "\u003ch1\u003e\u30a8\u30e9\u30fc (4xx)\u003c/h1\u003e\u304a\u63a2\u3057\u306e\u30da\u30fc\u30b8\u3092\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30d8\u30eb\u30d7\u304c\u5fc5\u8981\u306a\u5834\u5408\u306f\u3001\u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003e%5Cu30d8%5Cu30eb%5Cu30d7%5Cu30bb%5Cu30f3%5Cu30bf%5Cu30fc%5Cu003c/a%5Cu003e%5Cu3084%5Cu003ca" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003e\u30d8\u30eb\u30d7\u30bb\u30f3\u30bf\u30fc\u003c/a\u003e\u3084\u003ca&lt;/A&gt; href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003e%5Cu30d5%5Cu30a9%5Cu30fc%5Cu30e9%5Cu30e0%5Cu003c/a%5Cu003e%5Cu3092%5Cu3054%5Cu89a7%5Cu306b%5Cu306a%5Cu308b%5Cu304b%5Cu003ca" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003e\u30d5\u30a9\u30fc\u30e9\u30e0\u003c/a\u003e\u3092\u3054\u89a7\u306b\u306a\u308b\u304b\u003ca&lt;/A&gt; href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003e%5Cu30db%5Cu30fc%5Cu30e0%5Cu003c/a%5Cu003e%5Cu306b%5Cu623b%5Cu3063%5Cu3066%5Cu304f%5Cu3060%5Cu3055%5Cu3044%5Cu3002" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003e\u30db\u30fc\u30e0\u003c/a\u003e\u306b\u623b\u3063\u3066\u304f\u3060\u3055\u3044\u3002&lt;/A&gt;", "pl": "\u003ch1\u003eB\u0142\u0105d (4xx)\u003c/h1\u003eNie mo\u017cna znale\u017a\u0107 \u017c\u0105danej strony. Odwied\u017a \u003ca href=\"&lt;A href="https://www.dropbox.com/help%5C%22%5Cu003eCentrum" rel="nofollow noreferrer"&gt;https://www.dropbox.com/help\"\u003eCentrum&lt;/A&gt; pomocy\u003c/a\u003e i \u003ca href=\"&lt;A href="https://forums.dropbox.com%5C%22%5Cu003efora%5Cu003c/a%5Cu003e" rel="nofollow noreferrer"&gt;https://forums.dropbox.com\"\u003efora\u003c/a\u003e&lt;/A&gt;, aby uzyska\u0107 pomoc, lub przejd\u017a do \u003ca href=\"&lt;A href="https://www.dropbox.com/home%5C%22%5Cu003estrony" rel="nofollow noreferrer"&gt;https://www.dropbox.com/home\"\u003estrony&lt;/A&gt; g\u0142\u00f3wnej\u003c/a\u003e."};&lt;/P&gt;

&lt;P&gt;function read_cookie (name) {&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var nameEQ = name + "=";&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var ca = document.cookie.split(';');&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for (var i = 0; i &amp;lt; ca.length; i++) {&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var c = ca[i];&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; while (c.charAt(0) == ' ') {&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; c = c.substring(1, c.length);&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (c.indexOf(nameEQ) === 0) {&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return c.substring(nameEQ.length, c.length);&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return null;&lt;/P&gt;

&lt;P&gt;}&lt;/P&gt;

&lt;P&gt;Event.observe(document, 'dom:loaded', function () {&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; var locale = read_cookie('locale');&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; if (locale) {&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; var msg = message[locale];&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; if (msg) {&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $('errorbox').update(msg);&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P&gt;});&lt;/P&gt;

&lt;P&gt;&amp;lt;/script&amp;gt;&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;</description>
      <pubDate>Wed, 22 Jul 2015 05:21:00 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83813#M2522</guid>
      <dc:creator>Chez B.</dc:creator>
      <dc:date>2015-07-22T05:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83814#M2523</link>
      <description>&lt;P&gt;The forum formatting may have messed this up, but make sure you don't have any "\"s.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Also, make sure you properly replaced all of the *_HERE values from my sample.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 05:24:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83814#M2523</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-07-22T05:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83815#M2524</link>
      <description>&lt;P&gt;What does NONCE refer to and do I just supply a bash function for the timestamp portion?&lt;/P&gt;

&lt;P&gt;In addition, is there a reason why I am not receiving the callbacks log messages? I have not seen one yet.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 06:33:41 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83815#M2524</guid>
      <dc:creator>Chez B.</dc:creator>
      <dc:date>2015-07-22T06:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83816#M2525</link>
      <description>&lt;P&gt;The nonce should just be any random string, which should only be used once. You can get the current timestamp however you wish.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Also, for what it's worth, if it saves you some trouble, since you just need the one account, I believe you can supply any arbitrary string for &lt;CODE&gt;userID&lt;/CODE&gt; in the &lt;CODE&gt;updateAccessToken&lt;/CODE&gt; method. (I can't promise that will always work though.)&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Finally, I&amp;nbsp;recommend getting your account linked properly first, but&amp;nbsp;there are a few things that might cause your delegate methods to not be called:&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;Your rest client is &lt;CODE&gt;nil&lt;/CODE&gt; or is being released (e.g., by ARC) prematurely.&lt;/LI&gt;
&lt;LI&gt;You're making the call in a background thread that doesn't have a run loop.&lt;/LI&gt;
&lt;LI&gt;Your delegate method that should be called back has a typo in it. Unfortunately the SDK doesn't warn you if it can't find a delegate method to call; it just completes without telling anyone.&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;Be sure to check your console for any errors though.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 07:16:20 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83816#M2525</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-07-22T07:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83817#M2526</link>
      <description>&lt;P&gt;How do I go about making sure that my account is linked properly? I am using the Facebook SDK in my app as well. Do you think it is a problem that I had to hack together&amp;nbsp;(BOOL)application:(UIApplication *)app openURL:(NSURL *)url&amp;nbsp;sourceApplication:(NSString *)source annotation:(id)annotation method in order to please both API's like this&amp;nbsp;&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;(BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;&amp;nbsp; return [FBAppCall handleOpenURL:url&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sourceApplication:sourceApplication&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; withSession:[PFFacebookUtils session]] &amp;amp;&amp;amp; [[DBSession sharedSession] handleOpenURL:url] &amp;amp;&amp;amp; [[DBSession sharedSession] isLinked];&lt;/P&gt;

&lt;P&gt;}&lt;/P&gt;

&lt;P&gt;Instead of doing this like in the tutorial&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;- (BOOL)application:(UIApplication \*)app openURL:(NSURL \*)url
 sourceApplication:(NSString \*)source annotation:(id)annotation {
    if ([[DBSession sharedSession] handleOpenURL:url]) {
        if ([[DBSession sharedSession] isLinked]) {
            NSLog(@"App linked successfully!");
            // At this point you can start making API calls
        }
        return YES;
    }
    // Add whatever other url handling code your app requires here
    return NO;
}  

In addition, what would be considered calling in the background thread as oppose to calling in the main thread?
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Jul 2015 13:20:48 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83817#M2526</guid>
      <dc:creator>Chez B.</dc:creator>
      <dc:date>2015-07-22T13:20:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83818#M2527</link>
      <description>&lt;P&gt;In my app delegate method I checked to see if the session was linked and from my test the logs states that my session is linked.&lt;/P&gt;

&lt;P&gt;if ([[DBSession sharedSession] isLinked]) {&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; NSLog(@"The session IS linked");&lt;/P&gt;

&lt;P&gt;&amp;nbsp; } else {&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; NSLog(@"The session is not linked");&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;P&gt;I have checked my app console and is says that one users is connected to the app and it also says that I made one API call yesterday. However I don't see the test &amp;nbsp;image that I wast trying to upload to dropbox. I am wondering if &amp;nbsp;I am uploading the file incorrectly. This is my upload method&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;(void)uploadToDropBox:(UIImage *)img&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;{&lt;/P&gt;

&lt;P&gt;&amp;nbsp; UIImage *testPic = [UIImage imageNamed:@"IMG_0005.jpg"];&lt;/P&gt;

&lt;P&gt;&amp;nbsp; NSArray *directories = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; NSUserDomainMask,&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; YES);&lt;/P&gt;

&lt;P&gt;&amp;nbsp; NSString *documentDirectory = [directories firstObject];&lt;/P&gt;

&lt;P&gt;&amp;nbsp; NSString *imagePath = [documentDirectory stringByAppendingPathComponent:@"cardImage"];&lt;/P&gt;

&lt;P&gt;&amp;nbsp; NSString *destDir = @"/";&lt;/P&gt;

&lt;P&gt;&amp;nbsp; NSData *imageData = UIImagePNGRepresentation(testPic);&lt;/P&gt;

&lt;P&gt;&amp;nbsp; [imageData writeToFile:imagePath atomically: YES];&lt;/P&gt;

&lt;P&gt;&amp;nbsp; [self.restClient uploadFile:@"cardImage" toPath:destDir withParentRev:nil fromPath:imagePath];&lt;/P&gt;

&lt;P&gt;&amp;nbsp; [self sendBDayCard];&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;}&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 22:58:36 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83818#M2527</guid>
      <dc:creator>Chez B.</dc:creator>
      <dc:date>2015-07-22T22:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83819#M2528</link>
      <description>&lt;P&gt;You may want to check that &lt;CODE&gt;[UIImage imageNamed:@"IMG\_0005.jpg"]&lt;/CODE&gt; exists in your project and that it is getting saved to your local filesystem correctly. Another thing to check would be that your &lt;CODE&gt;uploadToDropBox:&lt;/CODE&gt; method is getting called at all.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jul 2015 00:58:38 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83819#M2528</guid>
      <dc:creator>Leah C.1</dc:creator>
      <dc:date>2015-07-23T00:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83820#M2529</link>
      <description>&lt;P&gt;Also, have you implemented the &lt;CODE&gt;uploadedFile&lt;/CODE&gt; and &lt;CODE&gt;uploadFileFailedWithError&lt;/CODE&gt; delegates as described in&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/core/start/ios#uploading" rel="nofollow noreferrer"&gt;https://www.dropbox.com/developers/core/start/ios#uploading&lt;/A&gt;?&lt;/P&gt;

&lt;P&gt;If the error delegate is called, you should be able to see&amp;nbsp;exactly what failed.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jul 2015 02:34:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83820#M2529</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-07-23T02:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83821#M2530</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I'm trying out the sdk using a generated access token but I keep getting an "Access token not found" error even though the token works fine in android.&lt;/P&gt;
&lt;P&gt;Here is my case (swift):&lt;/P&gt;
&lt;PRE&gt;let dropboxSession = DBSession(appKey: DB_KEY, appSecret: DB_SECRET, root: kDBRootAppFolder)&lt;BR /&gt;dropboxSession.updateAccessToken(DB_ACCESS_TOKEN, accessTokenSecret: DB_ACCESS_TOKEN_SECRET, forUserId: DB_USER_ID)&lt;BR /&gt;DBSession.setSharedSession(dropboxSession)&lt;/PRE&gt;
&lt;P&gt;So I'd appreciate to know what "DB_ACCESS_TOKEN_SECRET" should be since the generated token is a single string?&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2015 03:06:26 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83821#M2530</guid>
      <dc:creator>Mitchel K.1</dc:creator>
      <dc:date>2015-09-21T03:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83822#M2531</link>
      <description>&lt;P&gt;Mitchel,&amp;nbsp;your issue doesn't seem related to the one in this thread. Please start&amp;nbsp;a new thread.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2015 03:42:04 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83822#M2531</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-09-21T03:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I upload a file to my dropbox apps folder in dropbox  in objective c?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83823#M2532</link>
      <description>&lt;P&gt;Alright here&amp;nbsp;&lt;A href="https://www.dropboxforum.com/hc/en-us/community/posts/204838359-Using-generated-access-token-with-the-iOS-sdk" target="_blank" rel="nofollow noreferrer"&gt;https://www.dropboxforum.com/hc/en-us/community/posts/204838359-Using-generated-access-token-with-the-iOS-sdk&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2015 03:47:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-upload-a-file-to-my-dropbox-apps-folder-in-dropbox-in/m-p/83823#M2532</guid>
      <dc:creator>Mitchel K.1</dc:creator>
      <dc:date>2015-09-21T03:47:31Z</dc:date>
    </item>
  </channel>
</rss>

