We're making changes to the Community, so you may have received some notifications - thanks for your patience and welcome back. Learn more here.
Forum Discussion
Dolphin_2018
7 years agoExplorer | Level 4
Where should I locate the 'startOAuth2Authentication'?
Hi,
Question 1:
I'm totally new to Android Studio and I have to add a DropBox (SDK V2) files loading method to an existing project. As I understood I have to add the following line to my ...
- 7 years ago
[Cross-linking for reference: https://stackoverflow.com/questions/49070230/where-should-i-locate-startoauth2authentication ]
1) The startOAuth2Authentication method is what kicks off the Dropbox app authorization flow, so you should put it wherever in your app you handle the request from the user to connect their Dropbox account, e.g., the handler for tapping on a "Link to Dropbox" button in your app. (For example, that's what the Android example app does.)
The import lines are what import the necessary classes from the Dropbox SDK. (You don't need the "OpenWithActivity" one for your app though.) The import/"can't resolve" issues you're seeing seem to indicate that you don't have the SDK successfully installed. We recommend using either Gradle or Maven to install it, as documented in the readme. Make sure you have one of those set up and working correctly. If you have tried that, and it's not working, please share whatever Maven/Gradle error you're getting.
2) That getSharedPreferences call is to the Android getSharedPreferences method. The first parameter there is the "name" for the "Desired preferences file". You can supply whatever name you want.
That getString call is to the Android getString method. The first parameter is the "key" for "The name of the preference to retrieve". Likewise, the exact string is up to you.
With both of these, it's mostly just important that you're consistent with the strings you use, as it's how you will store and retrieve the account information. There's an example of these being used to store and retrieve the Dropbox access token in the Android example.
The getOAuth2Token method retrieves the access token, but only when the user is actually going through the app authorization flow. If they are not, it will return null. You should store and re-use the access token when you get it. That's done in the example here.
- 7 years agoThat line should run when you click on the "Login with Dropbox" button, not the "+" button. If you're seeing the "+", it means you've already connected Dropbox.
Anyway, I just tried it and it's working for me. (Also, make sure that you're actually debugging, and not just running. I.e., use the "bug" icon when in Android Studio, not the "play" icon.) - 7 years agoMake sure you have AuthActivity registered in your app's package, and only in one, as shown here:
https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/android/src/main/AndroidManifest.xml#L26
If you had others registered but removed them, try restarting your device.
Dolphin_2018
Explorer | Level 4
Thanks very much, I'm trying to implement it right now. In the meantime, I'm just wondering, why when I'm putting a breakpoint on the line:
Auth.startOAuth2Authentication(UserActivity.this, getString(R.string.app_key));
in the "Android" example, it's never stopping there? does it makes sense? it looks like the code is working properly and when I run it on my Nexus 5 device, click the "+" sign on the right bottom of the screen, and choose a file from my pictures collection, it succesfully transmited to my dropbox folder, but as I said it's never stop in the breakpoint.
How can it be? am I missing something in my understanding of this code?
Thanks.
Greg-DB
7 years agoDropbox Staff
That line should run when you click on the "Login with Dropbox" button, not the "+" button. If you're seeing the "+", it means you've already connected Dropbox.
Anyway, I just tried it and it's working for me. (Also, make sure that you're actually debugging, and not just running. I.e., use the "bug" icon when in Android Studio, not the "play" icon.)
Anyway, I just tried it and it's working for me. (Also, make sure that you're actually debugging, and not just running. I.e., use the "bug" icon when in Android Studio, not the "play" icon.)
- Dolphin_20187 years agoExplorer | Level 4
Thanks very much now It's understood... I thought that it should Login to the Dropbox on every new run so I thought that it should stop on the breakpoint every time.
And yes I was in debugging mode (Shift + F9 on the Android Studio).
I will continue with this next week and let you know.
Thanks!
- Dolphin_20187 years agoExplorer | Level 4
Hi Greg,
1. As I understand I should call:
startOAuth2Authentication(...);
only once, does it matter where I call it? can I just call it in the OnCreate() method of my class?
2. I tried to call it from several places and every time it's cause my application to crush.
The call is something like that:
Auth.startOAuth2Authentication(className.this, "7ekr2fh5e4d82b2");
I tried to place it in the OnCreate(), and also in the method that is called when the user click on the "Link to DropBox" link, but it's crushing enywhere I put it.
What may be the problem?
- Greg-DB7 years agoDropbox Staff
1. You will generally only need to call `startOAuth2Authentication` once per user. Note that the user can revoke access though, so you should provide UI for allowing them to link again later if they want.
You can technically put it in OnCreate, but it usually makes sense to only call it when the user explicitly indicates they want to link to Dropbox.
2. Please the error and stack for the crash and I'll take a look.
- Dolphin_20187 years agoExplorer | Level 4
Hi Greg,
I still have to learn how to use the Stack Trace, so for now I used something like this:
try
{
Auth.startOAuth2Authentication(mContext, "2eh.........8g0");
}
catch(Exception Ex)
{
errorStr = Ex.getMessage();.....
}And the errorStr shows:
java.lang.IllegalStateException: There must be a com.dropbox.core.android.AuthActivity within your app's package registered for your URI scheme (db-2eh.........8g0). However, it appears that an activity in a different package is registered for that scheme instead. If you have multiple apps that all want to use the same accesstoken pair, designate one of them to do authentication and have the other apps launch it and then retrieve the token pair from it.
Does it helps? (by the way just to be sure I uninstalled all the apps of this kind from my device, but I still have the same error).
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,875 PostsLatest Activity: 53 seconds agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!