ParseFacebookUtils ClassParse
Provides a set of utilities for using Parse with Facebook.
Inheritance Hierarchy

SystemObject
  ParseParseFacebookUtils

Namespace: Parse
Assembly: Parse.WinRT (in Parse.WinRT.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public static class ParseFacebookUtils

The ParseFacebookUtils type exposes the following members.

Properties

  NameDescription
Public propertyStatic memberAccessToken
Gets the access token for the currently logged in Facebook user. This can be used with a Facebook SDK to get access to Facebook user data.
Public propertyStatic memberApplicationId
Gets the Facebook Application ID as supplied to Initialize(String)
Top
Methods

  NameDescription
Public methodStatic memberInitialize
Initializes Facebook for use with Parse.
Public methodStatic memberIsLinked
Gets whether the given user is linked to a Facebook account. This can only be used on the currently authorized user.
Public methodStatic memberLinkAsync(ParseUser, IEnumerableString)
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and providing access to Facebook data for the user. The user will be logged in through Facebook's OAuth web flow using the Windows WebAuthenticationBroker.
Public methodStatic memberLinkAsync(ParseUser, IEnumerableString, CancellationToken)
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and providing access to Facebook data for the user. The user will be logged in through Facebook's OAuth web flow using the Windows WebAuthenticationBroker.
Public methodStatic memberLinkAsync(ParseUser, WebView, IEnumerableString)
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and providing access to Facebook data for the user. The user will be logged in through Facebook's OAuth web flow, so you must supply a webView that will be navigated to Facebook's authentication pages.
Public methodStatic memberLinkAsync(ParseUser, String, String, DateTime)
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and providing access to Facebook data for the user.
Public methodStatic memberLinkAsync(ParseUser, WebView, IEnumerableString, CancellationToken)
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and providing access to Facebook data for the user. The user will be logged in through Facebook's OAuth web flow, so you must supply a webView that will be navigated to Facebook's authentication pages.
Public methodStatic memberLinkAsync(ParseUser, String, String, DateTime, CancellationToken)
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and providing access to Facebook data for the user.
Public methodStatic memberLogInAsync(IEnumerableString)
Logs in a ParseUser using Facebook for authentication. If a user for the given Facebook credentials does not already exist, a new user will be created. The user will be logged in through Facebook's OAuth web flow using the Windows WebAuthenticationBroker.
Public methodStatic memberLogInAsync(IEnumerableString, CancellationToken)
Logs in a ParseUser using Facebook for authentication. If a user for the given Facebook credentials does not already exist, a new user will be created. The user will be logged in through Facebook's OAuth web flow using the Windows WebAuthenticationBroker.
Public methodStatic memberLogInAsync(WebView, IEnumerableString)
Logs in a ParseUser using Facebook for authentication. If a user for the given Facebook credentials does not already exist, a new user will be created. The user will be logged in through Facebook's OAuth web flow, so you must supply a webView that will be navigated to Facebook's authentication pages.
Public methodStatic memberLogInAsync(String, String, DateTime)
Logs in a ParseUser using Facebook for authentication. If a user for the given Facebook credentials does not already exist, a new user will be created.
Public methodStatic memberLogInAsync(WebView, IEnumerableString, CancellationToken)
Logs in a ParseUser using Facebook for authentication. If a user for the given Facebook credentials does not already exist, a new user will be created. The user will be logged in through Facebook's OAuth web flow, so you must supply a webView that will be navigated to Facebook's authentication pages.
Public methodStatic memberLogInAsync(String, String, DateTime, CancellationToken)
Logs in a ParseUser using Facebook for authentication. If a user for the given Facebook credentials does not already exist, a new user will be created.
Public methodStatic memberUnlinkAsync(ParseUser)
Unlinks a user from a Facebook account. Unlinking a user will save the user's data.
Public methodStatic memberUnlinkAsync(ParseUser, CancellationToken)
Unlinks a user from a Facebook account. Unlinking a user will save the user's data.
Top
See Also

Reference