Package com.dropbox.core.v2.check
Class DbxAppCheckRequests
- java.lang.Object
- 
- com.dropbox.core.v2.check.DbxAppCheckRequests
 
- 
 public class DbxAppCheckRequests extends java.lang.ObjectRoutes in namespace "check".
- 
- 
Constructor SummaryConstructors Constructor Description DbxAppCheckRequests(DbxRawClientV2 client)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description EchoResultapp()This endpoint performs App Authentication, validating the supplied app key and secret, and returns the supplied string, to allow you to test your code and connection to the Dropbox API.EchoResultapp(java.lang.String query)This endpoint performs App Authentication, validating the supplied app key and secret, and returns the supplied string, to allow you to test your code and connection to the Dropbox API.
 
- 
- 
- 
Constructor Detail- 
DbxAppCheckRequestspublic DbxAppCheckRequests(DbxRawClientV2 client) 
 
- 
 - 
Method Detail- 
apppublic EchoResult app() throws DbxApiException, DbxException This endpoint performs App Authentication, validating the supplied app key and secret, and returns the supplied string, to allow you to test your code and connection to the Dropbox API. It has no other effect. If you receive an HTTP 200 response with the supplied query, it indicates at least part of the Dropbox API infrastructure is working and that the app key and secret valid.The queryrequest parameter will default to""(seeapp(String)).- Returns:
- EchoResult contains the result returned from the Dropbox servers.
- Throws:
- DbxApiException
- DbxException
 
 - 
apppublic EchoResult app(java.lang.String query) throws DbxApiException, DbxException This endpoint performs App Authentication, validating the supplied app key and secret, and returns the supplied string, to allow you to test your code and connection to the Dropbox API. It has no other effect. If you receive an HTTP 200 response with the supplied query, it indicates at least part of the Dropbox API infrastructure is working and that the app key and secret valid.- Parameters:
- query- The string that you'd like to be echoed back to you. Must have length of at most 500 and not be- null.
- Returns:
- EchoResult contains the result returned from the Dropbox servers.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
- DbxApiException
- DbxException
 
 
- 
 
-