iOS.Facebook.Bindings 1.0.3

dotnet add package iOS.Facebook.Bindings --version 1.0.3
                    
NuGet\Install-Package iOS.Facebook.Bindings -Version 1.0.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="iOS.Facebook.Bindings" Version="1.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="iOS.Facebook.Bindings" Version="1.0.3" />
                    
Directory.Packages.props
<PackageReference Include="iOS.Facebook.Bindings" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add iOS.Facebook.Bindings --version 1.0.3
                    
#r "nuget: iOS.Facebook.Bindings, 1.0.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package iOS.Facebook.Bindings@1.0.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=iOS.Facebook.Bindings&version=1.0.3
                    
Install as a Cake Addin
#tool nuget:?package=iOS.Facebook.Bindings&version=1.0.3
                    
Install as a Cake Tool

Facebook iOS SDK Bindings for .NET

This package provides C# bindings for the Facebook iOS SDK, enabling you to integrate Facebook functionality into your .NET iOS applications built with Xamarin.iOS or .NET MAUI.

Included Frameworks

This binding library includes the following Facebook iOS SDK frameworks:

  • FBSDKCoreKit - Core Facebook SDK functionality
  • FBSDKLoginKit - Facebook Login functionality
  • FBAEMKit - Aggregated Event Measurement kit
  • FBSDKCoreKit_Basics - Basic utilities and shared components

Installation

Install the package via NuGet Package Manager:

Install-Package iOS.Facebook.Bindings

Or via .NET CLI:

dotnet add package iOS.Facebook.Bindings

Usages

Add the necessary using statements to your code:

using FacebookiOSBindings;
LoginManager loginManager = new LoginManager();

loginManager.LogIn(new[] { "public_profile" }, viewController,
    new LoginManagerLoginResultBlock((loginResult, e) =>
    {
        // Handle Login Logic
    })
);

loginManager.LogOut();
FacebookiOSBindings.FBSDKApplicationDelegate.SharedInstance
Profile.EnableUpdatesOnAccessTokenChange(true);
Profile.Notifications.ObserveDidChange((sender, e) => {
     // Handle Change Logic
});

Requirements

  • .NET 8.0 or later
  • iOS deployment target: iOS 12.0 or later
  • Xcode 14.0 or later

License

This binding library is released under the MIT License. The Facebook iOS SDK itself is subject to Facebook's licensing terms.

Support

For issues related to this binding library, please create an issue in the GitHub repository. For issues related to the Facebook iOS SDK itself, please refer to the Facebook Developers documentation.

Product Compatible and additional computed target framework versions.
.NET net8.0-ios18.0 is compatible.  net9.0-ios was computed.  net10.0-ios was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0-ios18.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.3 110 6/21/2025
1.0.2 80 5/23/2025
1.0.1 81 5/23/2025
1.0.0 83 5/23/2025