public class DbxClientV2 extends DbxClientV2Base
DbxWebAuth
.
This class has no mutable state, so it's thread safe as long as you pass
in a thread safe HttpRequestor
implementation.
_client
Constructor and Description |
---|
DbxClientV2(DbxRequestConfig requestConfig,
String accessToken)
Creates a client that uses the given OAuth 2 access token as
authorization when performing requests against the default Dropbox hosts.
|
DbxClientV2(DbxRequestConfig requestConfig,
String accessToken,
DbxHost host)
Same as
DbxClientV2(DbxRequestConfig, String) except you can
also set the hostnames of the Dropbox API servers. |
public DbxClientV2(DbxRequestConfig requestConfig, String accessToken)
requestConfig
- Default attributes to use for each requestaccessToken
- OAuth 2 access token (that you got from Dropbox) that
gives your app the ability to make Dropbox API calls. Typically
acquired through DbxWebAuth
public DbxClientV2(DbxRequestConfig requestConfig, String accessToken, DbxHost host)
DbxClientV2(DbxRequestConfig, String)
except you can
also set the hostnames of the Dropbox API servers. This is used in
testing. You don't normally need to call this.requestConfig
- Default attributes to use for each requestaccessToken
- OAuth 2 access token (that you got from Dropbox) that
gives your app the ability to make Dropbox API calls. Typically
acquired through DbxWebAuth
host
- Dropbox hosts to send requests to (used for mocking and
testing)