Skip to content

Commit 1b67b5a

Browse files
Merge pull request #103 from MaximBarminov/patch-1
FacebookAuthenticationProvider.cs fix
2 parents 01842a1 + f66bb93 commit 1b67b5a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Parse/Internal/FacebookAuthenticationProvider.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ public bool HandleNavigation(Uri uri) {
7575
parameters["fields"] = "id";
7676

7777
var request = new HttpRequest {
78-
Uri = new Uri(MeUrl, "?" + ParseClient.BuildQueryString(parameters))
78+
Uri = new Uri(MeUrl, "?" + ParseClient.BuildQueryString(parameters)),
79+
Method = "GET"
7980
};
8081

8182
ParseClient.PlatformHooks.HttpClient.ExecuteAsync(request, null, null, CancellationToken.None).OnSuccess(t => {

0 commit comments

Comments
 (0)