2020.09.01.
Facebook authentication and get information about the user with Plugin.Facebook
When we have a Xamarin.Forms Portable application we have to click on References -> Manage NuGet Packages. Type in: Plugin.Facebook and Install. After the Install it creates 4 folders: Models, View, ViewModel és Services. If it is possible, leaves the ViewModel folder intact. Models folder: It contains the response Object Model(User’s information) Services: var requestUrl = “https://graph.facebook.com/v2.7/me/?fields=name,picture,work,website,religion,location,locale,link,cover,age_range,bio,birthday,devices,email,first_name,last_name,gender,hometown,is_verified,languages&access_token=” + accessToken; It is necessary to define the […]