ParseFacebookUtilsLogInAsync Method (WebView, IEnumerableString, CancellationToken)Parse
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.

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

public static Task<ParseUser> LogInAsync(
	WebView webView,
	IEnumerable<string> permissions,
	CancellationToken cancellationToken
)

Parameters

webView
Type: Windows.UI.Xaml.ControlsWebView
A web view that will be used to present the authorization pages to the user.
permissions
Type: System.Collections.GenericIEnumerableString
A list of Facebook permissions to request.
cancellationToken
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: TaskParseUser
The user that was either logged in or created.
See Also

Reference