Skip to content

Commit 05e20c1

Browse files
committed
Fix broken link in readme.
1 parent b9723aa commit 05e20c1

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

ReadMe.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ You can also download the Java SDK JAR and and its required dependencies directl
3131

3232
## Dropbox for Java tutorial
3333

34-
A good way to start using the Java SDK is to follow this quick tutorial. Just make sure you have the the Java SDK [installed](/developers/documentation/java#install) first!
34+
A good way to start using the Java SDK is to follow this quick tutorial. Just make sure you have the the Java SDK [installed](#setup) first!
3535

3636
### Register a Dropbox API app
3737

38-
To use the Dropbox API, you'll need to register a new app in the [App Console](/developers/apps). Select Dropbox API app and choose your app's permission. You'll need to use the app key created with this app to access API v2.
38+
To use the Dropbox API, you'll need to register a new app in the [App Console](https://www.dropbox.com/developers/apps). Select Dropbox API app and choose your app's permission. You'll need to use the app key created with this app to access API v2.
3939

4040
### Link an account
4141

@@ -166,6 +166,8 @@ Save your Dropbox API key to a JSON file called, say, "test.app":
166166
}
167167
```
168168

169+
App key and secret can be found in you app page in [App Console](https://www.dropbox.com/developers/apps).
170+
169171
### Building from source
170172

171173
```
@@ -180,7 +182,7 @@ The output will be in "build/".
180182
### Running the examples
181183

182184
1. Follow the instructions in the "Build from source" section above.
183-
2. Save your Dropbox API key in a file called "test.app". See: [Get a Dropbox API key](#get-a-dropbox-api-key), above.
185+
2. Save your Dropbox API key in a file called "test.app". See: [Save your Dropbox API key](#save-your-dropbox-api-key), above.
184186
3. Compile and install the SDK into your local maven repo: `./gradlew install`
185187
4. To compile all the examples: `(cd examples/ && ./gradlew classes`
186188
5. To compile just one example: `(cd examples/ && ./gradlew :<example-name>:classes`
@@ -218,10 +220,6 @@ cd examples
218220

219221
(You must first generate "test.auth" using the "authorize" example above.)
220222

221-
#### tutorial
222-
223-
The example from our [online tutorial](https://www.dropbox.com/developers/documentation/java#tutorial). Unlike the other examples, this example is not meant to be run without modification.
224-
225223
#### upload-file
226224

227225
Uploads a file to Dropbox. The example includes regular and chunked file uploads.

0 commit comments

Comments
 (0)