| Modifier and Type | Method and Description |
|---|---|
static void |
ParseFacebookUtils.extendAccessToken(ParseUser user,
Context context,
SaveCallback callback)
Deprecated.
This is now handled automatically by the Facebook SDK.
|
static boolean |
ParseFacebookUtils.extendAccessTokenIfNeeded(ParseUser user,
Context context,
SaveCallback callback)
Deprecated.
This is now handled automatically by the Facebook SDK.
|
static void |
ParseFacebookUtils.link(ParseUser user,
Activity activity,
int activityCode,
SaveCallback callback) |
static void |
ParseFacebookUtils.link(ParseUser user,
Activity activity,
SaveCallback callback) |
static void |
ParseFacebookUtils.link(ParseUser user,
Collection<String> permissions,
Activity activity,
int activityCode,
SaveCallback callback)
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and
providing access to Facebook data for the user.
|
static void |
ParseFacebookUtils.link(ParseUser user,
Collection<String> permissions,
Activity activity,
SaveCallback callback)
Links a user using the default activity code if single sign-on is enabled.
|
static void |
ParseTwitterUtils.link(ParseUser user,
Context context,
SaveCallback callback)
Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and
providing access to Twitter data for the user.
|
static void |
ParseFacebookUtils.link(ParseUser user,
String facebookId,
String accessToken,
Date expirationDate,
SaveCallback callback)
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and
providing access to Facebook data for the user.
|
static void |
ParseTwitterUtils.link(ParseUser user,
String twitterId,
String screenName,
String authToken,
String authTokenSecret,
SaveCallback callback)
Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and
providing access to Twitter data for the user.
|
static <T extends ParseObject> |
ParseObject.pinAllInBackground(List<T> objects,
SaveCallback callback)
Stores the objects and every object they point to in the local datastore, recursively.
|
static <T extends ParseObject> |
ParseObject.pinAllInBackground(String name,
List<T> objects,
SaveCallback callback)
Stores the objects and every object they point to in the local datastore, recursively.
|
void |
ParseObject.pinInBackground(SaveCallback callback)
Stores the object and every object it points to in the local datastore, recursively.
|
void |
ParseObject.pinInBackground(String name,
SaveCallback callback)
Stores the object and every object it points to in the local datastore, recursively.
|
static <T extends ParseObject> |
ParseObject.saveAllInBackground(List<T> objects,
SaveCallback callback)
Saves each object in the provided list to the server in a background thread.
|
void |
ParseObject.saveEventually(SaveCallback callback)
Saves this object to the server at some unspecified time in the future, even if Parse is
currently inaccessible.
|
void |
ParseObject.saveInBackground(SaveCallback callback)
Saves this object to the server in a background thread.
|
void |
ParseFile.saveInBackground(SaveCallback callback)
Saves the file to the Parse cloud in a background thread.
|
void |
ParseFile.saveInBackground(SaveCallback saveCallback,
ProgressCallback progressCallback)
Saves the file to the Parse cloud in a background thread.
|
static void |
ParseFacebookUtils.saveLatestSessionData(ParseUser user,
SaveCallback callback)
Saves the latest session data to the user.
|
static void |
ParsePush.subscribeInBackground(String channel,
SaveCallback callback)
Adds 'channel' to the 'channels' list in the current
ParseInstallation and saves it in
a background thread. |
static void |
ParseAnalytics.trackAppOpenedInBackground(Intent intent,
SaveCallback callback)
Tracks this application being launched (and if this happened as the result of the user opening
a push notification, this method sends along information to correlate this open with that
push).
|
static void |
ParseAnalytics.trackEventInBackground(String name,
Map<String,String> dimensions,
SaveCallback callback)
Tracks the occurrence of a custom event with additional dimensions.
|
static void |
ParseAnalytics.trackEventInBackground(String name,
SaveCallback callback)
Tracks the occurrence of a custom event.
|
static void |
ParseTwitterUtils.unlinkInBackground(ParseUser user,
SaveCallback callback)
Unlinks a user from a Twitter account in the background.
|
static void |
ParseFacebookUtils.unlinkInBackground(ParseUser user,
SaveCallback callback)
Unlinks a user from a Facebook account in the background.
|
static void |
ParsePush.unsubscribeInBackground(String channel,
SaveCallback callback)
Removes 'channel' from the 'channels' list in the current
ParseInstallation and saves
it in a background thread. |